table_name=表名 table_schema=数据库名 1select column_name,column_comment from INFORMATION_SCHEMA.Columns where table_name='event_base_info' and table_schema='jmqshzl'
mysql 复制表和表数据的方法分享,很简单 复制表: 1create table tb_test01 like tb_test02; 复制表数据: 12insert into tb_test01 select * from tb_test02; 备注:tb_test01 是新表 tb_test02 是旧表