Answers for "postgres list of columns in a table"

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
1

postgre describe table

SELECT 
   table_name, 
   column_name, 
   data_type 
FROM 
   information_schema.columns
WHERE 
   table_name = 'city';
Posted by: Guest on October-08-2020

Code answers related to "postgres list of columns in a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language