本题目要求编写UPDATE语句,
把所有低于75分的女生成绩提高5%;
update sc,stu set grade= grade*1.05
where stu.sno=sc.sno
and sc.grade <75
and stu.sex='0';
/*llll*/
本题目要求编写UPDATE语句,
把所有低于75分的女生成绩提高5%;
update sc,stu set grade= grade*1.05
where stu.sno=sc.sno
and sc.grade <75
and stu.sex='0';
/*llll*/