RE: simple division - Mailing list pgsql-general

From Igor Neyman
Subject RE: simple division
Date
Msg-id DM5PR17MB1532E338DDA8BC419EFCD1D2DAAF0@DM5PR17MB1532.namprd17.prod.outlook.com
Whole thread Raw
In response to simple division  (Martin Mueller <martinmueller@northwestern.edu>)
List pgsql-general

 

 

From: Martin Mueller <martinmueller@northwestern.edu>
Sent: Tuesday, December 4, 2018 3:30 PM
To: pgsql-general <pgsql-general@postgresql.org>
Subject: simple division

 

I have asked this question before and apologize for not remembering it.  How do you do simple division in postgres and get 10/4 with decimals?

 

This involves cast and numeric in odd ways that are not well explained in the documentation. For instance, you’d expect an example in the Mathematical Functions. But there isn’t.

 

The documentation of string functions is exemplary. The documentation of mathematical less so. Remember that it may be used by folks like me whose math is shaky. The MySQL documentation is better on this simple operation.

 

 

-----

Martin Mueller
Professor emeritus of English and Classics

Northwestern University

 

There is nothing odd about:

 

select (12345678.1234/32.5678)::numeric(10,4);

 

Regards,

Igor Neyman

 

pgsql-general by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: simple division
Next
From: Thomas Kellerer
Date:
Subject: Re: simple division