mysql8.0使用(MySQL 8.0新特性 — 检查性约束的使用简介)
类别:数据库 浏览量:831
时间:2021-10-16 00:39:29 mysql8.0使用
MySQL 8.0新特性 — 检查性约束的使用简介前言
在mysql 8.0版本中,引入了一个非常有用的新特性 — 检查性约束,它可以提高对非法或不合理数据写入的控制能力;接下来我们就来详细了解一下。
检查性约束
创建、删除与查看
(1)可以在建表时,创建检查性约束
|
mysql> create table t1 -> ( -> check (c1 <> c2), -> c1 int check (c1 > 10), -> c2 int constraint c2_positive check (c2 > 0), -> c3 int check (c3 < 100), -> constraint c1_nonzero check (c1 <> 0), -> check (c1 > c3) -> ); query ok, 0 rows affected (0.03 sec) |
(2)也可以通过下列语句,新增检查性约束
|
mysql> alter table t1 add constraint c3_nonzero check ((c3<>0)); query ok, 0 rows affected (0.16 sec) records: 0 duplicates: 0 warnings: 0 |
(3)可以通过下列语句,删除检查性约束
|
mysql> alter table t1 drop constraint c3_nonzero; query ok, 0 rows affected (0.02 sec) records: 0 duplicates: 0 warnings: 0 |
(4)可以通过查询表结构的方式,查看检查性约束
|
mysql> show create table t1\g *************************** 1. row *************************** table : t1 create table : create table `t1` ( `c1` int default null , `c2` int default null , `c3` int default null , constraint `c1_nonzero` check ((`c1` <> 0)), constraint `c2_positive` check ((`c2` > 0)), constraint `t1_chk_1` check ((`c1` <> `c2`)), constraint `t1_chk_2` check ((`c1` > 10)), constraint `t1_chk_3` check ((`c3` < 100)), constraint `t1_chk_4` check ((`c1` > `c3`)) ) engine=innodb default charset=utf8mb4 collate =utf8mb4_0900_ai_ci 1 row in set (0.00 sec) |
(5)也可以通过下面两个视图查看,其中table_constraints查询表存在哪些约束,check_constraints查询检查性约束的具体定义
|
mysql> select * from information_schema.table_constraints where table_name= 't1' ; + --------------------+-------------------+-----------------+--------------+------------+-----------------+----------+ | constraint_catalog | constraint_schema | constraint_name | table_schema | table_name | constraint_type | enforced | + --------------------+-------------------+-----------------+--------------+------------+-----------------+----------+ | def | test | c1_nonzero | test | t1 | check | yes | | def | test | c2_positive | test | t1 | check | yes | | def | test | t1_chk_1 | test | t1 | check | yes | | def | test | t1_chk_2 | test | t1 | check | yes | | def | test | t1_chk_3 | test | t1 | check | yes | | def | test | t1_chk_4 | test | t1 | check | yes | + --------------------+-------------------+-----------------+--------------+------------+-----------------+----------+ 6 rows in set (0.00 sec) mysql> select * from information_schema.check_constraints where constraint_name= 'c1_nonzero' ; + --------------------+-------------------+-----------------+--------------+ | constraint_catalog | constraint_schema | constraint_name | check_clause | + --------------------+-------------------+-----------------+--------------+ | def | test | c1_nonzero | (`c1` <> 0) | + --------------------+-------------------+-----------------+--------------+ 1 row in set (0.00 sec) |
(6)当插入不符合检查性约束的数据时,会直接报错
|
mysql> insert into t1 values (0,0,0); error 3819 (hy000): check constraint 'c1_nonzero' is violated. |
限制
(1)自增列和其他表的列,不支持检查性约束
(2)不确定的函数,如connection_id(),current_user(),now()等,不支持检查性约束
(3)用户自定义函数,不支持检查性约束
(4)存储过程,不支持检查性约束
(5)变量,不支持检查性约束
(6)子查询,不支持检查性约束
总结
检查性约束,还是一个非常不错的功能,可以实现丰富的数据校验场景,大家可以尝试一下。
以上就是mysql 8.0新特性 — 检查性约束的简单介绍的详细内容,更多关于mysql 8.0新特性 — 检查性约束的资料请关注开心学习网其它相关文章!
原文链接:https://cloud.tencent.com/developer/inventory/2098/article/1762645
您可能感兴趣
- mysql8.0设置root密码(MySQL8.0.23版本的root密码重置最优解法)
- mysql8.0.25.0安装配置(MySQL8.0.23免安装版配置详细教程)
- mysql8.0安装教程win10(Windows10下mysql 8.0.22 安装配置方法图文教程)
- win10安装mysql8.0如何启动(win10下mysql 8.0.23 安装配置方法图文教程)
- docker部署mysql并且自动启动(Docker 部署 Mysql8.0的方法示例)
- idea安装mybatis(IDEA使用mybatis-generator及配上mysql8.0.3版本遇到的bug)
- mysql8.0自定义安装图解(M1芯片安装mysql8.0数据库的实现步骤图文)
- mysql8.0.16安装步骤图解(mysql 8.0.22 安装配置图文教程)
- mysql8.0.18.0安装详细教程(mysql 8.0.22 下载安装配置方法图文教程)
- mysql8.0.23的安装步骤(mysql 8.0.22 下载安装配置方法图文教程)
- mysql8.0安装及配置(MySQL 8.0 之不可见列的基本操作)
- mysql8.0使用(MySQL 8.0新特性 — 检查性约束的使用简介)
- win10下安装mysql8.0.23 及 “服务没有响应控制功能”问题解决办法(win10下安装mysql8.0.23 及 “服务没有响应控制功能”问题解决办法)
- mysql8.0.15官方最新版本安装教程(MySQL8.0.24版本Release Note的一些改进点)
- mysql8.0详解(MySQL 8.0 的 5 个新特性,太实用了!)
- centos安装mysql8.0教程(Centos7 安装 Mysql8教程)
- 东南亚安全吗(好不好挣钱)
- 潘长江小品《照亮全家福》台词剧本完整版(潘长江小品照亮全家福台词剧本完整版)
- 一窗通办政务服务小品剧本(一窗通办政务服务小品剧本)
- 刘韬涛丁子贺小品《根治低头族》台词剧本(刘韬涛丁子贺小品根治低头族台词剧本)
- 看完《夺冠》,黄渤的演技我实在夸不起来,彭昱畅反令人惊喜(黄渤的演技我实在夸不起来)
- 黄渤泪目 我的痴呆父亲,我内心永远的痛(黄渤泪目我的痴呆父亲)
热门推荐
- idea怎么在tomcat部署项目(IDEA 配置Tomcat服务器和发布web项目的图文教程)
- nginx做图片服务器代理(使用nginx动态转换图片大小生成缩略图)
- html5入门布局(吃透移动端 Html5 响应式布局)
- python读取文件的正确方法(强悍的Python读取大文件的解决方案)
- laravel增删改查接口(laravel-admin 实现给grid的列添加行数序号的方法)
- js中的内存机制(详解JS内存空间)
- 运营人员应具备的基本技能
- laravel如何设置默认模块(Laravel框架控制器的middleware中间件用法分析)
- python去除字符串中间的空格(Python去除字符串前后空格的几种方法)
- 海外云服务器租用要怎么选择?(海外云服务器租用要怎么选择?)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9