查看mysql中某一张表的表结构: desc 表名 重命名表命令: rename table 表名 to 新的表名; 或者 alter table 表名 rename to 新的表名; 重命名列名: alter table 表名 column 列名 新列名 类型(长度); 检索表命令: show tables like ‘关键字%’; 或者 show tables like ‘%关键字’; 或者...