笔者创建的student表,总共三个字段(studentId是主键)
一、往student_info表中插入一条数据
insert into student_info values(5,'liutao',12); //主键手动定义
报错 Error Code : 1062 Duplicate entry '5' for key 'PRIMARY',这里就是因为你的主键重复了
insert into student_info(stuName,stuAge) values('liutao',13
2024-11-08