正在回答
你好!要是有多个字段,要把字段写完整,比如下面是两个字段,最后一条语句的select后也要是两个字段,select前的小括号里也要是对应的字段才可以。
create table tb1(id int not null auto_increment primary key,username varchar(20),password varchar(20));
insert into tb1(username,password) values("aa","111111");
insert into tb1(username,password) values("bb","111111");
insert into tb1(username,password) values("cc","111111");
create table tb2(id int not null auto_increment primary key,username varchar(20),password varchar(20));
insert into tb2(username,password) select username,password from tb1;
如果我的回答解决了你的疑惑,请采纳!祝学习愉快!
你好!可以像下面这样,新创建一个表格tb2,将除了id字段外的其他字段的值,从tb1表格查询出来,存储到tb2表格中,这样tb2的id字段就是连续自增了。
create table tb1(id int not null auto_increment primary key,username varchar(20));
insert into tb1(username) values("aa");
insert into tb1(username) values("bb");
insert into tb1(username) values("cc");
create table tb2(id int not null auto_increment primary key,username varchar(20));
insert into tb2(username) select username from tb1;
如果我的回答解决了你的疑惑,请采纳!祝学习愉快!
同学你好,这边测试自增主键增长,添加错误id并不会自增,如:
create table test1( id int auto_increment key, name varchar(10) ); insert into test1 values(null,'aa'); insert into test1 values(null,'bb'); insert into test1 values(null,cc); insert into test1 values(null,'cc'); select * from test1;
建议同学再试试
祝:学习愉快~
- 参与学习 人
- 提交作业 357 份
- 解答问题 8016 个
本阶段将带你学习MySQL数据库,JDBC接口,MyBatis框架等,带你掌握的数据的存放和管理。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星