What\'s the equivalent to show tables (from MySQL) in PostgreSQL?
show tables
(For completeness)
You could also query the (SQL-standard) information schema:
SELECT table_schema || '.' || table_name FROM information_schema.tables WHERE table_type = 'BASE TABLE' AND table_schema NOT IN ('pg_catalog', 'information_schema');