How to have the list of table in a monetdb databas

2020-07-12 02:19发布

In postgresql, one can have all tables names by running the following query

SELECT table_name FROM information_schema.tables WHERE table_schema='public';

Is there something similar in monetdb to have the list of tables ?

标签: monetdb
2条回答
疯言疯语
2楼-- · 2020-07-12 02:51

I finally find this query

select tables.name from tables where tables.system=false ;
查看更多
Animai°情兽
3楼-- · 2020-07-12 03:10

If you are using mclient, in the command line you could simply use the command "\d" to list all the tables in the current database.

sql> \d

TABLE  sys.table1 

TABLE  sys.table2

TABLE  sys.table3

Additionally, use the command "\d tablename" to view the metadata of a table - equivalent to "show create table" in mysql.

查看更多
登录 后发表回答