在postgresql中,可以通过运行以下查询来获得所有表的名称
SELECT table_name FROM information_schema.tables WHERE table_schema='public';
monetdb中有类似的表列表吗?
我终于找到了这个查询
select tables.name from tables where tables.system=false ;
如果使用mclient,只需在命令行中使用命令"\d"即可列出当前数据库中的所有表。
sql> d
TABLE sys.table1
TABLE sys.table2
TABLE sys.table3
此外,使用命令"\d tablename"查看表的元数据,相当于mysql中的"show create table"。