6

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 ?

Fopa Léon Constantin
  • 11,863
  • 8
  • 48
  • 82

2 Answers2

12

I finally find this query

select tables.name from tables where tables.system=false ;
Fopa Léon Constantin
  • 11,863
  • 8
  • 48
  • 82
12

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.

Santosh Panda
  • 7,235
  • 8
  • 43
  • 56
Vijay Krishna
  • 161
  • 1
  • 9