A-A+

41. select month(入学日期)as 入学月份 count(* )as 人数fr

2022-08-12 15:13:14 问答库 阅读 196 次

问题详情

41. select month(入学日期)as 入学月份,count(* )as 人数

from Students

group by month(入学日期)

42. create procedure xxk6

(@a char(8), @b varchar (1 0))

as

begin

delete from Score

where [email protected]<script data-yjshash="f9e31" type="text/javascript">/* */</script> and 课程名 [email protected]<script data-yjshash="f9e31" type="text/javascript">/* */</script>

end


参考答案

参考答案:

41.从 Students 表中分组统计出每个月份入学的学生人数。

42. 从 Score 表中删除学号为@a 的值、课程名为@b 的值的学生成绩记录。


考点:人数,日期