全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
放心减肥网 提供实验27 查看、修改和删除触发器实验目的:掌握触发器的创建及其注意事项。实验课时:2课时实验方法:案例分析法实验内容:一、查看触发器 (1)sp_helptrigger 触发器名 查看触发器的名称,拥有者和五个布尔值 supdate,isdelete,isinsert,isafter,isinsteadof (2)sp_helptext 触发器名 查看文本信息 二、修改触发器重点演示如何设置触发器的无效和重新有效。 、无效: use northwind alter table 表名 disable trigger 触发器名 、重新有效: use northwind alter table 表名 enable trigger 触发器名 三、删除触发器 语法格式为drop trigger 触发器名【例1】在order_test表上建立一个插入触发器,在添加一个订单时,减少cust_test表的相应货物的记录的库存量。参考代码:use northwind go create trigger cust_orders_ins3 on order_test after insert as update cust_test set cstorage=cstorage-inserted.orders from cust_test,inserted where cust_test.customerid=inserted.customerid 【例2】在order_test表上建立一个插入触发器,规定订单日期(Odate)不能手工修改。 参考代码:use northwind go create trigger orderdateupdate on order_test after update as if update (odate) begin raiserror(Error,10,1) rollback transaction end【例3】要求订购的物品一定要在仓库中有的,并且数量足够。参考代码:use northwind go create trigger order_insert5 on order_test after insert as begin if(select count(*) from cust_test,inserted where cust_test.customerid=inserted.customerid)=0 begin print No entry in goods for your order rollback transaction end if(select cust_test.cstorage from cust_test,inserted where cust_test.customerid=inserted.customerid) (select inserted.orders from cust_test,inserted where cust_test.customerid=inserted.customerid) begin print No enough entry in goods for your order rollback transaction end end 作 业:在northwind 中order_test表上建立一个插入触发器,同时插入多行数据时,要求订购的物品一定要在仓库中有的。 参考代码:use northwind go create trigger order_insert6 on order_test after insert as if (select count(*) from cust_test,inserted where cust_test.customerid=inserted.customerid)rowcount -可以在触发器逻辑中使用 ROWCOUNT 函数以区分单行插入和多行插入。 begin delete order_test from order_test,inserted where order_test.orderid=inserted.orderid and inserted.customerid not in (select customerid from cust_test) end print rowcount 说 明 设置 SET ROWCOUNT 选项将使大多数 Transact-SQL 语句在已受指定数目的行影响后停止处理。这包括触发器和 INSERT、UPDATE 及 DELETE 等数
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 石河子大学《应用人工智能》2021-2022学年期末试卷
- 石河子大学《数字电路》2022-2023学年期末试卷
- 石河子大学《口腔颌面外科学二》2021-2022学年第一学期期末试卷
- 2024-2025学年新教材高中生物第六章细胞的生命历程第3节细胞的衰老和死亡2教案新人教版必修1
- 2024-2025学年新教材高中地理第3章区域合作第1节产业转移对区域发展的影响课时作业含解析湘教版选择性必修2
- 2024-2025学年高中数学第三章概率3.2.1古典概型课时素养评价含解析新人教A版必修3
- 2024年武威道路客运输从业资格证试题答案
- 2024加热炉设备买卖合同
- 2024船舶承包合同范文
- 2024快餐配送合同范本
- 国开作业《公共关系学》实训项目1:公关三要素分析(六选一)参考552
- 碳排放核算与报告要求 第XX部分:铅冶炼企业
- 物业及物业管理:提升旅游景区品质
- 财政收支业务管理制度
- DZ∕T 0215-2020 矿产地质勘查规范 煤(正式版)
- 2024中国铁路成都局招聘笔试冲刺题(带答案解析)
- 肺功能进修总结汇报
- 精神科病例分享演讲比赛
- 大学生职业生涯规划测绘地理信息技术专业
- 小学新教材解读培训
- MOOC 全球化与中国文化-西南交通大学 中国大学慕课答案
评论
0/150
提交评论