Answers for "show table columns postgresql"

SQL
2

postgresql how to show table names

SELECT table_name
  FROM information_schema.tables
 WHERE table_schema='public'
   AND table_type='BASE TABLE';
Posted by: Guest on August-17-2021
1

psql show columns of table

SELECT 
   table_name, 
   column_name, 
   data_type 
FROM 
   information_schema.columns
WHERE 
   table_name = 'city';Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on July-16-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language