Answers for "describe table query in postgresql"

3

describe table postgres

postgres=# d schema.tablename;
Posted by: Guest on June-24-2020
1

describe table query in postgresql

select column_name, data_type, character_maximum_length, column_default, is_nullable
from INFORMATION_SCHEMA.COLUMNS where table_name = '<name of table>';
Posted by: Guest on June-25-2021
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 "describe table query in postgresql"

Browse Popular Code Answers by Language