1、只能在数据类型为 integer 或 bigint 的列上创建 自增 属性。
2、一个表只能有一个 自增列。
3、PK同Auto Incr有没有打钩
1、首先双击SQLyogEnt的快捷方式以打开软件;
2、进入到软件首页,首先创建一个新的数据库,命令为newMysql;
3、创建两个表,命令为class、student;
class表结构为id、class_code、class_name;
student表结构为id、class_code、student_code、student_name;
4、创建成功后,在newMysql数据库列表中就存在了两个表;
5、然后我们来创建外键;通过sql创建:alter table class add foreign key class_foreignKey(id) references student(id);
6、然后也可以对外键进行删除处理;通过sql删除:ALTER TABLE class DROP FOREIGN KEY class_foreignKey
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)