On Thu, 23 Jan 2003, Jean-Christian Imbeault wrote:
> In Postgresql the "/" operator does integer division. Is there an
> operator or function that will do floating-point division?
/ does division based on the types of its operands
1/2 -> 0
1::float / 2 -> 0.5