What\'s the equivalent to show tables (from MySQL) in PostgreSQL?
show tables
use only see a tables
=> \dt
if want to see schema tables
=>\dt+
if you want to see specific schema tables
=>\dt schema_name.*