If you use mclient, on the command line, you can simply use the "\ d" command to display all the tables in the current database.
sql> \d
TABLE sys.table1
TABLE sys.table2
TABLE sys.table3
Also, use the "\ d tablename" command to view the table metadata, which is equivalent to "show create table" in mysql.
source
share