Answers for "how to get columns of a table in postgresql"

1

postgres get columns names

SELECT *
  FROM information_schema.columns
 WHERE table_name   = 'your_table'
     ;
Posted by: Guest on March-12-2021
1

psql show columns of table

SELECT 
   table_name, 
   column_name, 
   data_type 
FROM 
   information_schema.columns
WHERE 
   table_name = 'city';Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on July-16-2021

Code answers related to "how to get columns of a table in postgresql"

Browse Popular Code Answers by Language