2014-04-11 44 views

回答

8

我如果您使用的移動客戶端,在命令行中,你可以簡單地使用命令「\ d」可以列出當前數據庫中所有表終於找到這個查詢

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

sql> \d 

TABLE sys.table1 

TABLE sys.table2 

TABLE sys.table3 

此外,使用命令「\ d tablename」來查看錶的元數據 - 相當於mysql中的「show create table」。

相關問題