查看database和table结构

    1. SHOW DATABASES; #查看 有哪些数据库
    2. show tables from 668shit; #查看 某个数据库内有哪些表
    3. desc `kpi_mola干预`; #查看 某个表的内部结构
    4. use databaseName; #更换当前使用的数据库
    5. #查询表中列的注释信息
    6. select * from information_schema.columns where table_schema = 'db' #表所在数据库
    7. and table_name = 'tablename' ; #你要查的表
    8. #只查询列名和注释
    9. select column_name, column_comment from information_schema.columns
    10. where table_schema ='db' and table_name = 'tablename' ;
    11. #查看表的注释
    12. select table_name,table_comment from information_schema.tables
    13. where table_schema = 'db' and table_name ='tablename'
    14. #查看表生成的DDL
    15. show create table table_name;
    16. #可以用\G来结尾,使得结果容易阅读;该命令把创建表的DDL显示出来,于是表结构、类型,外键,备注全部显示出来了。

    复制

    1. 复制表结构:create table table1 like table;
    2. 复制数据:insert into table1 select * from table