mysql查看表名及注释的方法:执行【select table_name from information_schema.tables where table_schema=数据库名称;】语句即可查看。 查询所有表名 (推荐教程:mysql视频教程) select table_name from inf
insert into(列名) select 列名 from 表名 where 条件 --不创建表,只复制表数据 select 列名 into 表名(这个表名是不存在的) from 表名 where 条件,--创建一张新表,只复制选择的列名字段数据 insert into(列名) select 列名 from 表名 where 条件 --不创建表,只复制表数据 select 列名 into 表名(