--检查约束 create table test1( id ) primary key, email ) check (email like '%@%') ) drop table test1 ,'12@6.com'); select * from test1 create table test2( id number primary key, gender ) check(gender in('男','女')) ) drop table test2 select * from test2 ,'