create table students(
student_id number(5)
constraint student_pk primary key,
monitor_id number(5)
name varchar2(10) not null,
sex varchar2(6)
constraint sex_chk check (sex in('╧','')), 
dob date,
specialty varchar2(10)
);提示信息:  missing right parentthesis  缺少括弧  怎么看都没发现 !请各位大侠帮忙 !不胜感激 ! 谢谢!