Answers for "get column names from postgresql query"

1

postgres get columns names

SELECT *
  FROM information_schema.columns
 WHERE table_name   = 'your_table'
     ;
Posted by: Guest on March-12-2021
1

postgresql select all column names

SELECT column_names
  FROM information_schema.columns
 WHERE table_schema = 'your_schema'
   AND table_name   = 'your_table'
     ;
-- just for column names
Posted by: Guest on December-25-2020

Code answers related to "get column names from postgresql query"

Browse Popular Code Answers by Language