Answers for "describe table in postgres"

SQL
1

select from describe sql

SELECT COLUMN_NAME AS `Field`, COLUMN_TYPE AS `Type`, IS_NULLABLE AS `NULL`, 
       COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS `Extra`
FROM information_schema.COLUMNS  
WHERE TABLE_SCHEMA = 'schemaName' AND TABLE_NAME = 'table1';
Posted by: Guest on February-25-2020
3

describe table postgres

postgres=# \d schema.tablename;
Posted by: Guest on June-24-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
0

1) PostgreSQL DESCRIBE TABLE using psql

\d table_name or \d+ table_name
or

SELECT 
   table_name, 
   column_name, 
   data_type 
FROM 
   information_schema.columns
WHERE 
   table_name = 'city';
Posted by: Guest on June-17-2021
3

show details of table postgres

postgres=# \d tablename;
Posted by: Guest on July-15-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language