create table student(
sage smallint CHECK (sage between 17 and 22),
ssex char(2) check(ssex in('男','女'))
);