Row Constructors : Row « Select Query « PostgreSQL






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=#
           
       








Related examples in the same category

1.Pass 'row' function to function
2.Cast row function
3.Using 'Row' function in a function