Answers for "get all 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
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
1

list columns in table postgres

-- Good for quickly reminding you of what columns exist.
SELECT * FROM mytable WHERE 1=0;
Posted by: Guest on October-20-2021

Code answers related to "get all column names from table postgres"

Browse Popular Code Answers by Language