postgres view columns in table code example
Example 1: how to list columns for particular tables in postgresql
SELECT *
FROM information_schema.columns
WHERE table_schema = 'your_schema'
AND table_name = 'your_table'
;
Example 2: describe table postgres
postgres=# \d schema.tablename;
Example 3: postgre describe table
SELECT
table_name,
column_name,
data_type
FROM
information_schema.columns
WHERE
table_name = 'city';