请教,此SQL语句哪里有问题, @_@

img


   DEFAULT C1 20FOR 年龄,CONSTRAINT C2 CHECKC性别 IN(男,女))):
mx
服务器:消息170,级别15,状态1,行22行:20 附近有语法错误。

create table 学生(学号 char(5) not null unique, 
                  姓名 char(8) not null , 
                  年龄 smallint default 20, 
                  性别 char(2), 
                  所在系 char(20), 
       constraint c2 check (性别 in ('男','女')));