(1)在学生表Student中插入一条记录(‘001201’,‘王一山’,‘男’,1980-12-4)。
insert into student values('001201','王一山','男','1980-12-4')
(2)插入一条选课记录(‘991101’,‘01002’,90)。insert into choice values('991101','01002',90)
(3)删除所有数据结构的学生成绩。delete score from choice
where course_no in (select course_no from coursewhere course_name='数据结构')
(4)把所有计算机基础课的成绩提高10%。update choice set score=score*0.1
where course_no in (select course_no from coursewhere course_name='计算机基础')
(5)把学号为991102的学生姓名改为“王小利”。update student set s_name='王小利' where s_no='991102'