postgresql how to show table names

Solutions on MaxInterview for postgresql how to show table names by the best coders in the world

showing results for - "postgresql how to show table names"
Tim
15 Feb 2019
1SELECT table_name
2  FROM information_schema.tables
3 WHERE table_schema='public'
4   AND table_type='BASE TABLE';
5