Mega Code Archive

 
Categories / PostgreSQL / Select Query
 

Row Constructors

postgres=# -- Row Constructors postgres=# postgres=# SELECT ROW(1,2.5,'this is a test');            row --------------------------  (1,2.5,"this is a test") (1 row) postgres=# postgres=#