在pg数据库中,可以使用以下两种方法来查看所有表:
使用 \dt 命令:
使用SQL查询:
SELECT table_name FROM information_schema.tables WHERE table_schema = 'public';
无论使用哪种方法,都会显示数据库中所有的表。