MySQL 1、选择数据库 use dbname show databases; 2、数据表 show tables mysql> show columns from customers; mysql> desc customers; 3、show 语句 show status show create databases show create table show grants 4、select 检索 4.1.1版本后不再区分大小写,但是为了容易阅读和调试,建议还是使用。 {代码...