学生管理系统

//使用jdbc时一定要导包进来

建学生表

CREATE TABLE student(
stuId VARCHAR(30) not null  PRIMARY KEY,
stuName VARCHAR(50) NOT NULL,
stuSex char(2)  null default '男'  check(sex='男' or sex='女')  ,  
stuAge int CHECK(stuAge>0),
stuJg VARCHAR(30),
stuDept VARCHAR(40)
)

插入数据

insert INTO student VALUES('sp004','唐山藏','男',21,'长安','庙里的')



你可能感兴趣的:(学生管理系统)