Answers for "how to list all column names in postgres"

SQL
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
0

postgresql list columns

SELECT * FROM information_schema.columns 
WHERE table_schema = 'your_schema'
  AND table_name = 'your_table';
Posted by: Guest on April-30-2021

Code answers related to "how to list all column names in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language