Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 246 Bytes

File metadata and controls

12 lines (9 loc) · 246 Bytes

Retrive Table Names

Enter into your psql shell and then execute the query below.

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

Replace schema_name with your schema name.