数据库技术实验六

数据库技术实验六

ID:16999669

大小:755.00 KB

页数:5页

时间:2018-08-26

数据库技术实验六_第1页
数据库技术实验六_第2页
数据库技术实验六_第3页
数据库技术实验六_第4页
数据库技术实验六_第5页
资源描述:

《数据库技术实验六》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、课程名称数据库技术实验成绩实验名称存储过程和触发器的使用学号姓名班级日期14.11.25实验目的:1.掌握存储过程的使用方法;2.掌握触发器的实现方法;实验平台:利用RDBMS(SQLServer2008)及其交互查询工具(查询分析器)来操作T-SQL语言;实验内容:1.存储过程(1)创建存储过程,要求当一个员工的工作年份大于6年时将其转到经理办公室工作。alterprocedureyuangong_infol@EmployeeIDchar(6),@namenchar(20)asbegindeclare@yearintset@year=(selectWorkYearfromEmpl

2、oyeeswhereEmployeeID=@EmployeeID)declare@DepartmentIDchar(3)set@DepartmentID=(selectDepartmentIDfromDepartmentswhereDepartmentName=@name)if(@year>6)updateEmployeessetDepartmentID=@DepartmentIDwhereEmployeeID=@EmployeeIDEndexecdbo.yuangong_infol'000000','经理办公室'locatedintheTomb,DongShenJiabang,d

3、eferthenextdayfocusedontheassassination.Linping,Zhejiang,1ofwhichliquorwinemasters(WuzhensaidinformationisCarpenter),whogotAfewbayonets,duetomissedfatal,whennightcame(1)创建存储过程,根据每个员工的学历将收入提高500元。alterprocSA_IN@enuchar(6)asbeginupdateSalarysetInCome=InCome+500fromSalary,EmployeeswhereEmployees.

4、EmployeeID=Salary.EmployeeIDandEducation=@enuendselectInComefromSalary,EmployeeswhereSalary.EmployeeID=Employees.EmployeeIDandEducation='本科'goexecdbo.sa_in'本科'goselectInComefromSalary,EmployeeswhereSalary.EmployeeID=Employees.EmployeeIDandEducation='本科'selectInComefromSalary,EmployeeswhereSala

5、ry.EmployeeID=Employees.EmployeeIDandEducation='本科'(2)创建存储过程,使用游标计算本科及以上学历的员工在总员工数中的比例。declare@eduvarchar(10),@part_countint,@all_countint;declaremycursorcursorforselectdistincteducation,COUNT(education)over(partitionbyeducation)aspart_count,COUNT(education)over()asall_countlocatedintheTomb,Do

6、ngShenJiabang,deferthenextdayfocusedontheassassination.Linping,Zhejiang,1ofwhichliquorwinemasters(WuzhensaidinformationisCarpenter),whogotAfewbayonets,duetomissedfatal,whennightcamefromEmployeesopenmycursorfetchnextfrommycursorinto@edu,@part_count,@all_countwhile@@FETCH_STATUS=0beginprint@edu+

7、'占总人数比例:'+convert(varchar(100),convert(numeric(38,2),@part_count/1.0/@all_count*100))+'%'fetchnextfrommycursorinto@edu,@part_count,@all_countendclosemycusordeallocatemycursor(1)使用命令方式修改及删除一个存储过程。ifexists(selectworkyearfromEmployeeswhere

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。