博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据库(十一)
阅读量:6817 次
发布时间:2019-06-26

本文共 1188 字,大约阅读时间需要 3 分钟。

--根据学生选课题目写一个存储过程,输入教师编号

--判断所教学生的及格率,80分及格,如果及格率超过
--50%,职称上升一级,否则降一级
alter proc pingji
@tno varchar(20)
as
begin
declare @cno varchar(20)
select @cno=cno from Course where Tno=@tno
declare @yxcount int
select @yxcount=count(*) from Score where Cno=@cno and Degree>=70
declare @zcount int
select @zcount=COUNT(*) from Score where Cno=@cno
declare @prof varchar(20)
select @prof=prof from Teacher where Tno=@tno
if @zcount>0
begin
if @yxcount/@zcount>=0.5
begin
if @prof='教授'
begin
print'已经是最高级别,没法再升级了。'
end
if @prof='副教授'
begin
update Teacher set Prof='教授' where Tno=@tno
end
if @prof='讲师'
begin
update Teacher set Prof='副教授' where Tno=@tno
end
if @prof='助教'
begin
update Teacher set Prof='讲师' where Tno=@tno
end
if @prof='后勤'
begin
update Teacher set Prof='助教' where Tno=@tno
end
end
else
begin
if @prof='教授'
begin
update Teacher set Prof='副教授' where Tno=@tno
end
if @prof='副教授'
begin
update Teacher set Prof='讲师' where Tno=@tno
end
if @prof='讲师'
begin
update Teacher set Prof='助教' where Tno=@tno
end
if @prof='助教'
begin
update Teacher set Prof='后勤' where Tno=@tno
end
end
end
else
begin
print'这个老师可能没有教课'
end
end
go
exec pingji '804'

转载于:https://www.cnblogs.com/mxx0426/p/4099191.html

你可能感兴趣的文章
SQL注入原理
查看>>
MySQL 锁(lock与latch)
查看>>
python
查看>>
DataTable数据存入指定路径的Excel文件
查看>>
Linq-C#左连接
查看>>
c和指针读书笔记
查看>>
常用正则表达式集锦
查看>>
JS 验证
查看>>
【Lua】特性和一些基础语法
查看>>
Jaxb2 实现JavaBean与xml互转
查看>>
Mac OSX简单使用中会用到的
查看>>
Firefox 23中的新特性(新陷阱)
查看>>
SQL Server 造成cpu 使用率高的 6 原因
查看>>
MYSQL <=>运算符
查看>>
unable to access android sdk add-on list
查看>>
由.NET说到WCF(未完成)
查看>>
用motion实现家庭视频监控
查看>>
帝国cms缩略图:网站不同地方生成不同的缩略图
查看>>
python Django Ajax基础
查看>>
aop point-cut表达式
查看>>