MySQL约束

作者: 墨线宝 | 来源:发表于2021-02-10 20:04 被阅读0次

    原文链接http://zhhll.icu/2021/%E6%95%B0%E6%8D%AE%E5%BA%93/%E5%85%B3%E7%B3%BB%E5%9E%8B%E6%95%B0%E6%8D%AE%E5%BA%93/MySQL/MySQL%E7%BA%A6%E6%9D%9F/

    MySQL约束

    数据库有六大约束,分别为

    • NOT NULL 非空约束,用于保证这个字段不能为空
    • DEFAULT 默认约束,用于保证该字段有默认值
    • PRIMARY KEY 主键约束,用于保证该字段可以唯一表示该行记录,唯一且非空
    • UNIQUE 唯一约束,用于保证该字段的唯一性,可以为空
    • CHECK 检查约束(MySQL不支持该约束)
    • FOREIGN KEY 外键约束,用于限制两个表的关系,用于保证该字段必须来自于主表关联列的值(在从表中添加外键约束,用于引用主表中某列的值)

    示例:

    create table class( 
      id int primary key, #主键约束
      name varchar(20) not null #非空约束
    );
    
    create table student(
        id int,
      name varchar(20) not null,
      classid int,
      sex int not null,
      brith date,
      constraint pk primary key(id), #主键约束
      constraint fk_student_class foreign key(classid) references class(id) #外键
    );
    

    由于本身的博客百度没有收录,博客地址http://zhhll.icu

    相关文章

      网友评论

        本文标题:MySQL约束

        本文链接:https://www.haomeiwen.com/subject/tcbkxltx.html