Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

postgresql how to show table names

SELECT table_name
  FROM information_schema.tables
 WHERE table_schema='public'
   AND table_type='BASE TABLE';
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #postgresql #show #table #names
ADD COMMENT
Topic
Name
1+8 =