What\'s the equivalent to show tables (from MySQL) in PostgreSQL?
show tables
select * from pg_catalog.pg_tables where schemaname != 'information_schema' and schemaname != 'pg_catalog';