在MySQL命令行客户端中是否有用于Windows的命令,允许您查看数据库中的所有表,或显示特定表的模式,类似于sqlite3中的.tables
或\dt
在psql?
答案 0 :(得分:6)
show tables;
或
select table_name from information_schema.tables where table_schema = 'your_db'
答案 1 :(得分:3)
[误读]
你正在寻找SHOW TABLES
听起来像。
要查看表格的架构,请使用DESCRIBE table_name;
答案 2 :(得分:3)
正如另一个对表列表所说 - 如果你想看到特定表的模式使用
SHOW CREATE TABLE foobar;