Answers for "How do I list all the columns in a table in postgres sql"

SQL
2

how to list columns for particular tables in postgresql

SELECT *
  FROM information_schema.columns
 WHERE table_schema = 'your_schema'
   AND table_name   = 'your_table'
     ;
Posted by: Guest on June-17-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 do I list all the columns in a table in postgres sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language