Answers for "psql list columns"

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

Browse Popular Code Answers by Language