- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[数据库技术实验六
课程名称 数据库技术 实验
成绩 实验名称 存储过程和触发器的使用 学号 姓名 班级 日期 14.11.25 实验目的:
掌握存储过程的使用方法;
掌握触发器的实现方法; 实验平台:
利用RDBMS(SQL Server 2008)及其交互查询工具(查询分析器)来操作T-SQL语言; 实验内容:
存储过程
创建存储过程,要求当一个员工的工作年份大于6年时将其转到经理办公室工作。
alter procedure yuangong_infol @EmployeeID char(6),@name nchar(20)
as
begin
declare @year int
set @year=(
select WorkYear
from Employees
where EmployeeID=@EmployeeID)
declare @DepartmentID char(3)
set @DepartmentID=(
select DepartmentID
from Departments
where DepartmentName=@name)
if (@year6)
update Employees
set DepartmentID=@DepartmentID
where EmployeeID=@EmployeeID
End
exec dbo.yuangong_infol 000000,经理办公室
创建存储过程,根据每个员工的学历将收入提高500元。
alter proc SA_IN @enu char(6)
as
begin
update Salary
set InCome=InCome+500
from Salary,Employees
where Employees.EmployeeID=Salary.EmployeeID and Education=@enu
end
select InCome
from Salary,Employees
where Salary.EmployeeID=Employees.EmployeeID and Education=本科
go
exec dbo.sa_in 本科
go
select InCome
from Salary,Employees
where Salary.EmployeeID=Employees.EmployeeID and Education=本科
select InCome
from Salary,Employees
where Salary.EmployeeID=Employees.EmployeeID and Education=本科
创建存储过程,使用游标计算本科及以上学历的员工在总员工数中的比例。
declare
@edu varchar(10),
@part_count int,
@all_count int ;
declare mycursor cursor for
select distinct education,
COUNT(education) over(partition
by education) as part_count,
COUNT(education) over() as all_count
from Employees
open mycursor
fetch next from
mycursor into @edu,@part_count,@all_count
while @@FETCH_STATUS=0begin
print @edu+占总人数比例:+convert(varchar(100),convert(numeric(38,2),@part_count/1.0/@all_count*100))+%
fetch next from mycursor
into @edu,@part_count,@all_count
end
close mycusor
deallocate mycursor
使用命令方式修改及删除一个存储过程。
if exists(select workyear from Employees where workyear=3)
drop procedure workyear
2. 触发器
(1) 对于YGGL数据库,表Employees的Employeeid列与表Salary的Employeeid列应满足参照完整性规则,请用触发器实现两个表间的参照完整性。
create trigg
文档评论(0)