Answers for "get a list of fields in a table in postgres"

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

Code answers related to "get a list of fields in a table in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language