List tables on PostgreSQL schema

From PedrosBrainDump
Revision as of 10:31, 3 February 2025 by 413vhcu1lq0463ob (talk | contribs) (Created page with "=== Query === SELECT table_name FROM information_schema.tables WHERE table_schema = 'public';")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Query

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