Answers for "all columns 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
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 "all columns postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language