SQL编写存储过程题 急!!!!进
1.编写存储过程updatascore输入学生编号,将其全部课程的成绩增加10分,并写出调用过程2.编写存储过程averagescore输出选修课程号为“NET10020...
1.编写存储过程updatascore 输入学生编号,将其全部课程的成绩增加10分,并写出调用过程
2.编写存储过程averagescore 输出选修课程号为“NET10020”的所有男人人数和平均成绩
3.编写存储过程deletecoures 输出课程编号,将其相关的课程信息转存到一个临时表中,将其相关表中的信息删除掉,并写出调用过程
谢谢,回答出来不胜感激! 展开
2.编写存储过程averagescore 输出选修课程号为“NET10020”的所有男人人数和平均成绩
3.编写存储过程deletecoures 输出课程编号,将其相关的课程信息转存到一个临时表中,将其相关表中的信息删除掉,并写出调用过程
谢谢,回答出来不胜感激! 展开
2个回答
展开全部
1.
Create proc updatascore
@sno varchar(100)
as
Begin
Update tablename set score=score+10 where sno=@sno
End
2.Create proc averagescore
as
Begin
select count(*),avg(score) from tablename group by cno,sex having cno='NET10020' and sex='男'
End
3.
Create proc deletecoures
@cno varchar(100)
as
Begin
select * into #temp_A from tablename where cno=@cno
delete from tablename where cno=@cno
End
--补充--------------------------
表结构都没。。 我写的一个大概的意思 希望对你有所帮助
Create proc updatascore
@sno varchar(100)
as
Begin
Update tablename set score=score+10 where sno=@sno
End
2.Create proc averagescore
as
Begin
select count(*),avg(score) from tablename group by cno,sex having cno='NET10020' and sex='男'
End
3.
Create proc deletecoures
@cno varchar(100)
as
Begin
select * into #temp_A from tablename where cno=@cno
delete from tablename where cno=@cno
End
--补充--------------------------
表结构都没。。 我写的一个大概的意思 希望对你有所帮助
展开全部
1.编写存储过程updatascore如下:
create proc proc_updatascore
@studentId int
AS
update 表名 set 具体的课程=具体的课程+10 where studentId=@studentId;
go
2.编写存储过程averagescore如下:
create proc proc_averagescore
AS
select count(*),avg(统计平均分的字段) from 表名 where 选修课程号='NET10020' and 性别=‘男’group by 统计总分的字段 ,统计平均分的字段
go
3.编写存储过程deletecoures 只提供思路; 楼主自己去实现!!!
select 课程编号 from 表名
insert into 表名(你要插入的字段) select (你要插入的字段) from 表名
两个表的字段必须相匹配!
然后用 用delete 语句删除信息即可!!!
create proc proc_updatascore
@studentId int
AS
update 表名 set 具体的课程=具体的课程+10 where studentId=@studentId;
go
2.编写存储过程averagescore如下:
create proc proc_averagescore
AS
select count(*),avg(统计平均分的字段) from 表名 where 选修课程号='NET10020' and 性别=‘男’group by 统计总分的字段 ,统计平均分的字段
go
3.编写存储过程deletecoures 只提供思路; 楼主自己去实现!!!
select 课程编号 from 表名
insert into 表名(你要插入的字段) select (你要插入的字段) from 表名
两个表的字段必须相匹配!
然后用 用delete 语句删除信息即可!!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询