Help for this page

Select Code to Download


  1. or download this
    testdb=# select x,y,z from (values ('abc', 'def', 'ghi')) as f(x,y,z);
    
      x  |  y  |  z
    -----+-----+-----
     abc | def | ghi
    (1 row)
    
  2. or download this
    testdb=# select (x,y,z) from (values ('abc', 'def', 'ghi')) as f(x,y,z
    +);
    
          row
    ...
    ----------
     t
    (1 row)