错误原因:重复创建了数据表。
解决办法:
在create table后面添加if not exists 判断如果数据表不存在则创建,即可解决。
原代码:
create table users( uid int not null auto_increment, uname varchar(30) not null, uage int not null, primary key (uid) );
在修改后:
create table if not exists users( uid int not null auto_increment, uname varchar(30) not null, uage int not null, primary key (uid) );
本站文章大部分为原创,用于个人学习记录,可能对您有所帮助,仅供参考!
我的微信
微信号已复制
版权声明
本站原创文章转载请注明文章出处及链接,谢谢合作!