码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 检查约束check

时间:2018-12-09 13:54:09      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:oracl   color   value   oracle   from   char   .com   drop   arch   

--检查约束
create table test1(
       id number(10) primary key,
       email varchar2(10) check (email like %@%)
)
drop table test1
insert into test1 values(1,12@6.com);
select * from test1

create table test2(
       id number primary key,
       gender varchar2(4) check(gender in(,))
)
drop table test2
select * from test2
insert into test2 values(1,)

 

Oracle 检查约束check

标签:oracl   color   value   oracle   from   char   .com   drop   arch   

原文地址:https://www.cnblogs.com/niwotaxuexiba/p/10090696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!