zoukankan      html  css  js  c++  java
  • Sql触发器模板

    触发器是一种特殊类型的存储过程,它不同于之前的我们介绍的存储过程。

    触发器主要是通过事件进行触发被自动调用执行的。而存储过程可以通过存储过程的名称被调用。

    SQL Server 2005中触发器可以分为两类:DML触发器和DDL触发器,其中DDL触发器它们会影响

    多种数据定义语言语句而激发,这些语句有create、alter、drop语句。

    (在此仅讨论DML触发器)

    DML触发器分为:

        1、 after触发器(之后触发)

            a、 insert触发器

            b、 update触发器

            c、 delete触发器

        2、 instead of 触发器 (之前触发)

    其中after触发器要求只有执行某一操作insert、update、delete之后触发器才被触发,且只能定义在表上。

    而instead of触发器表示并不执行其定义的操作(insert、update、delete)而仅是执行触发器本身。

    既可以在表上定义instead of触发器,也可以在视图上定义。

    触发器有两个特殊的表:插入表(instered表)和删除表(deleted表)。这两张是逻辑表也是虚表。

    有系统在内存中创建者两张表,不会存储在数据库中。而且两张表的都是只读的,只能读取数据而不能修改数据。

    这两张表的结果总是与被改触发器应用的表的结构相同。当触发器完成工作后,这两张表就会被删除。

    Inserted表的数据是插入或是修改后的数据,而deleted表的数据是更新前的或是删除的数据。

    对表的操作

    Inserted逻辑表

    Deleted逻辑表

    增加记录(insert)

    存放增加的记录

    删除记录(delete)

    存放被删除的记录

    修改记录(update)

    存放更新后的记录

    存放更新前的记录

    Update数据的时候就是先删除表记录,然后增加一条记录。这样在inserted和deleted表就都有update后的数据记录了。

    注意:触发器本身就是一个事务,所以在触发器里面可以对修改数据进行一些特殊的检查。如果不满足可以利用事务回滚,撤销操作。

    --创建insert插入类型触发器
    if (object_id('Trg_班级表_insert', 'tr') is not null)
    drop trigger Trg_班级表_insert
    go
    create trigger Trg_班级表_insert
    on 班级表
    for insert --插入触发
    as
        --定义变量
        declare @id int, @name varchar(20);
        --在inserted表中查询已经插入记录信息
        select @id = id, @name = name from inserted;insert into 学生表 values(@name, 18 + @id,  @id);
        print '添加学生成功!';
    go
    --测试插入数据
    --insert触发器,会在inserted表中添加一条刚插入的记录。
    insert into 班级表 values('5班', getDate()); --查询数据 select * from 班级表 ; select * from 学生表 order by id;
    --delete删除类型触发器
    if (object_id('Trg_班级表_delete', 'TR') is not null)
    drop trigger Trg_班级表_delete
    go
    create trigger Trg_班级表_delete
    on 班级表
    for delete --删除触发
    as
        print '备份数据中……';    
        if (object_id('班级备份表', 'U') is not null)
            --存在classesBackup,直接插入数据
            insert into 班级备份表 
            select name, createDate from deleted;
        else
            --不存在班级备份表,创建再插入
            select * into 班级备份表 from deleted;
        print '备份数据成功!';
    go
    --
    --不显示影响行数
    --set nocount on;
    --delete触发器会在删除数据的时候,将刚才删除的数据保存在deleted表中
    delete 班级表 where name = '5班';
    --查询数据
    select * from 班级表;
    select * from 班级备份表;
    --update更新类型触发器
    if (object_id('Trg_班级表_update', 'TR') is not null)
    drop trigger Trg_班级表_update
    go
    create trigger Trg_班级表_update
    on 班级表
    for update
    as
        declare @oldName varchar(20), @newName varchar(20);
        --更新前的数据
        select @oldName = name from deleted;
        if (exists (select * from 学生表 where name like '%'+ @oldName + '%'))
            begin
                --更新后的数据
                select @newName = name from inserted;
                update 学生表 set name = replace(name, @oldName, @newName) where name like '%'+ @oldName + '%';
                print '级联修改数据成功!';
            end
        else
            print '无需修改学生表!';
    go
    --查询数据
    --update触发器会在更新数据后,将更新前的数据保存在deleted表中,更新后的数据保存在inserted表中
    select * from 学生表 order by id;
    select * from 班级表;
    update 班级表 set name = '五班' where name = '5班';
    --update更新列级触发器
    
    if (object_id('Trg_班级表_update_column', 'TR') is not null)
    drop trigger Trg_班级表_update_column
    go
    create trigger Trg_班级表_update_column
    on 班级表
    for update
    as
        --列级触发器:是否更新了班级的字段[创建时间]
        if (update(createDate))
        begin
            raisError('系统提示:班级创建时间不能修改!', 16, 11);
            rollback tran;
        end
    go
    --测试
    --更新列级触发器可以用update是否判断更新列记录;
    select * from 学生表 order by id;
    select * from 班级表;
    update 班级表 set createDate = getDate() where id = 3;
    update 班级表 set name = '四班' where id = 7;
    --创建instead of触发器
    
    if (object_id('Trg_班级表_inteadOf', 'TR') is not null)
    drop trigger Trg_班级表_inteadOf
    go
    create trigger Trg_班级表_inteadOf
    on 班级表
    instead of delete/*, update, insert*/
    as
        declare @id int, @name varchar(20);
        --查询被删除的信息,病赋值
        select @id = id, @name = name from deleted;
        print 'id: ' + convert(varchar, @id) + ', name: ' + @name;
        --先删除学生表的信息
        delete 学生表 where cid = @id;
        --再删除班级表的信息
        delete 班级表 where id = @id;
        print '删除[ id: ' + convert(varchar, @id) + ', name: ' + @name + ' ] 的信息成功!';
    go
    --test
    select * from 学生表 order by id;
    select * from 班级表;
    delete 班级表 where id = 7;
    --创建触发器语法
    create trigger Trg_name
    on table_name
    with encrypion –加密触发器
        for update...
    as
        Transact-SQL
    --显示自定义消息raiserror
    
    if (object_id('Trg_message', 'TR') is not null)
        drop trigger Trg_message
    go
    create trigger Trg_message
    on 学生表 
        after insert, update
    as raisError('Trg_message触发器被触发', 16, 10);
    go
    --test
    insert into 学生表 values('lily', 22, 1, 7);
    update 学生表 set sex = 0 where name = 'lucy';
    select * from 学生表 order by id;
    --禁用触发器
    disable trigger Trg_message on 学生表;
    --启用触发器
    enable trigger Trg_message on 学生表;
    
    --查询已存在的触发器
    select * from sys.triggers;
    select * from sys.objects where type = 'TR';
    
    --查看触发器触发事件
    select te.* from sys.trigger_events te join sys.triggers t
    on t.object_id = te.object_id
    where t.parent_class = 0 and t.name = 'tgr_valid_data';
    
    --查看创建触发器语句
    exec sp_helptext 'Trg_message';
  • 相关阅读:
    centos安装libreoffice
    世界,你好!
    4.闭包函数
    3.回调函数
    1内存地址
    2.函数递归
    1.字典
    nonlocal可以修改外层函数变量
    单例模式(Singleton)示例源码
    大家来说说自己的WEB开发工具好吗?
  • 原文地址:https://www.cnblogs.com/star-studio/p/6097900.html
Copyright © 2011-2022 走看看