美文网首页
My sql 的约束

My sql 的约束

作者: 叶秋_YQ | 来源:发表于2019-05-15 20:26 被阅读0次
1. not null 非空约束
// name 不能为空,如果数据插入的时候name为空会报错
create table t_user(
    id int(10),
    name varchar(32) not null,  // 列级约束
    email varchar(128)
    // not null(name) 加到这里是表级约束
);
insert into t_user(id,name,email) values (1,'张三','123@jd.com');
+------+--------+------------+
| id   | name   | email      |
+------+--------+------------+
|    1 | 张三   | 123@jd.com |
+------+--------+------------+
// name设置不能为空,如果插入的是时候name为空会报这种错误
insert into t_user(1,email)values(1,'135@jd.com');
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1,email)values(1,'135@jd.com')' at line 1

2. unique 唯一约束
create table t_user(
    id int(10),
    name varchar(32) not null,   // 列级约束
    email varchar(128) unique  // 列级约束
   // unique(email) 表级约束
);
// 给邮箱加上unique 表示在插入数据的时候邮箱不能重复
+-------+--------------+------+-----+---------+-------+
| Field | Type         | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+-------+
| id    | int(10)      | YES  |     | NULL    |       |
| name  | varchar(32)  | NO   |     | NULL    |       |
| email | varchar(128) | YES  | UNI | NULL    |       |
+-------+--------------+------+-----+---------+-------+

3. 主建约束 primary key 简称pk
        主建涉及的术语
                主建约束
                主建字段
                主建值
给字段添加主建约束后,不能为空,并且不能重复
一张表中应该有主建,如果没有主建表示这张表是无效的
主建值:是当前行数据的唯一标示

/// 添加主建
drop table if exists t_user;
create table t_user(
    id int(10) primary key,
    name varchar(32) ,
    email varchar(128)
);
+-------+--------------+------+-----+---------+-------+
| Field | Type         | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+-------+
| id    | int(10)      | NO   | PRI | NULL    |       |
| name  | varchar(32)  | YES  |     | NULL    |       |
| email | varchar(128) | YES  |     | NULL    |       |
+-------+--------------+------+-----+---------+-------+
mysql 中提供了一个自增数字,主建的值是自动增长,不需要用户维护
auto_increment  , 自动增长的值只能使用一次

drop table if exists t_user;
create table t_user(
    id int(10) primary key auto_increment,
    name varchar(32) ,
    email varchar(128)
);
+-------+--------------+------+-----+---------+----------------+
| Field | Type         | Null | Key | Default | Extra          |
+-------+--------------+------+-----+---------+----------------+
| id    | int(10)      | NO   | PRI | NULL    | auto_increment |
| name  | varchar(32)  | YES  |     | NULL    |                |
| email | varchar(128) | YES  |     | NULL    |                |
+-------+--------------+------+-----+---------+----------------+

4. foreign key 外建约束 简称fk
      主建涉及的术语
                外建约束
                外建字段
                外建值
 foreign key 可以把两张表联系起来
两张表设置外建
drop table if exists t_student;
drop table if exists t_calss;
create table t_calss(
    cno int(3) primary key,
    cname varchar(120) not null unique
);
create table t_student(
    sno int(3) primary key,
    sname varchar(32) not null,
    calssno int(3),
    foreign key(calssno) references t_calss(cno)
);
insert into t_calss (cno,cname) values(100,'1班');
insert into t_calss (cno,cname) values(200,'2班');
insert into t_calss (cno,cname) values(300,'3班');
insert into t_student(sno,sname,calssno) values(1,'李四',100);
insert into t_student(sno,sname,calssno) values(2,'王五',200);
insert into t_student(sno,sname,calssno) values(3,'赵六',300);
select * from t_student;
+-----+--------+---------+
| sno | sname  | calssno |
+-----+--------+---------+
|   1 | 李四   |     100 |
|   2 | 王五   |     200 |
|   3 | 赵六   |     300 |
+-----+--------+---------+
select * from t_calss;
+-----+-------+
| cno | cname |
+-----+-------+
| 100 | 1班   |
| 200 | 2班   |
| 300 | 3班   |
+-----+-------+
// 下面这行添加失败t_calss cno 里面 500 不存在
insert into t_student(sno,sname,calssno) values(6,'李四',500);

相关文章

  • My sql 的约束

  • SQL基础01

    什么是SQL SQL中常用的关键字 SQL中的语句的种类 SQL中约束 简单约束: 示例: 主键: 添加主键约束原...

  • sql中表级约束和列级约束

    sql中表级约束和列级约束,在SQL SERVER中, (1) 对于基本表的约束分为列约束和表约束 约束是限制用户...

  • 数据库(2)

    SQL 约束(Constraints) SQL 约束用于规定表中的数据规则。如果存在违反约束的数据行为,行为会被约...

  • 数据库基础知识整理-SQL约束和使用

    数据库基础知识整理-SQL约束和使用 SQL约束 SQL 约束用于规定表中的数据规则,可以在创建表时规定(通过 C...

  • 面试积累之数据库篇(六)

    事务的4大属性:原子性,隔离性,一致性,持久性 sql完整性约束:主键约束唯一约束检查约束外键约束默认约束 sql...

  • MySQL和SQL Server的两种批量添加数据的方式(函数)

    My SQL (Navicat中执行) SQL Server

  • SQL 约束

    NOT NULL 约束 NOT NULL 约束强制列不接受 NULL 值。 NOT NULL 约束强制字段始终包含...

  • sql 约束

    定义 对一个表中的属性操作的限制叫做约束。 分类 1. 主键约束 primary key 不允许重复元素,避免了数...

  • sql约束

    NOT NULL(列级):非空约束,约束该字段不可为null; DEFAULT(列级):默认约束,添加默认值,插入...

网友评论

      本文标题:My sql 的约束

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