create table student (sno int,sname varchar(50),ssex varchar(50),sage int,sdept varchar(20))
create table sc (cno int,sno int,grade int)
create table course (cno int ,canme varchar(50),cpno varchar(50),ccredit int)insert into student select '95001','张三','男','20','cs'
union all select '95002','李四','女','19','is'
union all select '95003','王五','女','18','ma'
union all select '95004','李勇','男','19','is'insert into sc select '95001','1','90'
union all select '95001','2','88'
union all select '95001','3','78'
union all select '95002','1','58'
union all select '95002','2','63'
union all select '95003','1','99'
union all select '95004','4','99'insert into course select '1','数据库','','4'
union all select '2','网络','','2'
union all select '3','程序','','6'