Answers for "select column names from table postgres"

1

postgres get columns names

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

how to list columns for particular tables in postgresql

SELECT *
  FROM information_schema.columns
 WHERE table_schema = 'your_schema'
   AND table_name   = 'your_table'
     ;
Posted by: Guest on June-17-2020
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 "select column names from table postgres"

Browse Popular Code Answers by Language