Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 306 Bytes

finding-public-table-names.md

File metadata and controls

13 lines (10 loc) · 306 Bytes

Finding public table names

Working in a new database? The following query will return the names of all public tables:

SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'public'
ORDER BY table_name;

source