show table structure postgres code example
Example 1: view detailed table schema postgresql
SELECT * FROM information_schema.columns
WHERE table_schema = 'some_schema'
AND TABLE_NAME = 'some_table';
SELECT
table_name,
column_name,
data_type
FROM
information_schema.columns
WHERE
table_name = 'some_table';
Example 2: show table postgres command
PostgreSQL show tables command
\dt
Example 3: describe table postgres
postgres=
Example 4: postgre describe table
SELECT
table_name,
column_name,
data_type
FROM
information_schema.columns
WHERE
table_name = 'city';