清空表truncate Table 表名查询表SELECT * FROM 表名称插入字段INSERT INTO 分组 (地域) VALUES ('河南省鹤壁市')
添加带自增id的表
create table tb(id int,constraint pkid primary key (id))