How to have the list of table in a monetdb database?

僤鯓⒐⒋嵵緔 提交于 2019-12-04 07:04:55

I finally find this query

select tables.name from tables where tables.system=false ;
Vijay Krishna

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.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!