-->

How to have the list of table in a monetdb databas

2020-07-12 02:26发布

问题:

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 ?

回答1:

I finally find this query

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


回答2:

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.



标签: monetdb