create table tb_student( stuNo char(9) primary key, stuName varchar2(15) not null, sex char(4) default '男' check(sex='男' or sex='女'), birthday date, speciality varchar2(15), mobile char(11) unique, address varchar2(50) );
|
立即参与
