Answers for "display data type of table pgsql"

SQL
0

get all tables postgres

SELECT * FROM pg_catalog.pg_tables;
Posted by: Guest on November-11-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

Code answers related to "SQL"

Browse Popular Code Answers by Language