Answers for "list all tables and column in postgres"

SQL
2

how to list columns for particular tables in postgresql

SELECT *
  FROM information_schema.columns
 WHERE table_schema = 'your_schema'
   AND table_name   = 'your_table'
     ;
Posted by: Guest on June-17-2020
8

show all tables postgres

\dt
# show list of tables in postgres
Posted by: Guest on December-13-2020

Code answers related to "list all tables and column in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language