On 16 Jan 2001 at 20:40 (-0800), Josh Berkus wrote:
| So, while I wait for my copy ... I can't find in the online
| docs anywhere a comprehensive list of built-in functions.
| You know, stuff like CURRVAL() and NOW(). Can anyone point
| me to such a list? Guessing parameters is getting
| frustrating!
psql -c '\df' > pg.functions
pg.functions will then contain a list of all registered functions,
return types, as well as parameters.
b