代码搜索:D触发器
找到约 10,000 项符合「D触发器」的源代码
代码结果 10,000
www.eeworm.com/read/6862/101937
pdf tc7w74 单只d触发器.pdf
www.eeworm.com/read/428535/8861213
sql 触发器的使用.sql
select * from vote
create trigger update_vote
on vote
instead of update
as
if update(vote)
begin
update vote
set vote=vote+50
where sno='95001'
end
update vote
set vote=vot
www.eeworm.com/read/183908/9130543
rc2 触发器.rc2
//
// My.RC2 - Microsoft Visual C++ 不会直接编辑的资源
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
////////////////////////////////
www.eeworm.com/read/183908/9130550
cpp 触发器dlg.cpp
#include "..\..\第五章\计数器\计数器dlg.h"
#include "..\..\第五章\计数器\计数器dlg.h"
#include "..\..\第五章\计数器\计数器dlg.h"
#include "..\..\第五章\计数器\计数器dlg.h"
#include "..\..\第五章\计数器\计数器dlg.h"
// 触发器Dlg.cpp : 实现文件
//
www.eeworm.com/read/183908/9130566
h 触发器dlg.h
// 触发器Dlg.h : 头文件
//
#pragma once
// CMyDlg 对话框
class CMyDlg : public CDialog
{
// 构造
public:
int intJ, intK, intCP, intQN, int intQN_1;
int intGates[10];//门的输出信号,可以计算出
bool trigg
www.eeworm.com/read/178467/9395302
txt project表触发器.txt
/*
功能说明:用于修改“进度状况”的同时修改“修改标志”
触发器类型:AFTER UPDATE
涉及数据对象:XT_TD_Project
制作人:王海
制做日期:2002-9-12
修改人:刘晓颖
修改说明:增加进度状况为接收退回时,修改标志为“Y”
修改日期:2002-10-31
修改人:刘晓颖
修改说明:项目接收后,自动添加到立项表中
修改日期:2003-1-15
* ...
www.eeworm.com/read/360827/10075840
txt 触发器3.txt
create trigger trDenyLeave
on dbo.员工的请假记录
for insert
as
declare @请假类型 varchar(50),@请假小时数 float,@员工剩余假期 int
set @请假类型=(select 请假类型 from inserted)
if @请假类型='折算成年假'
begin
set @请假小时数=(sel
www.eeworm.com/read/360827/10075843
txt 触发器2(trupdateleave).txt
create trigger trUpdateLeave
on dbo.员工的请假记录
for update
as
declare @申请状态 varchar(50),@请假类型 varchar(50)
set @申请状态=(select 申请状态 from inserted)
if @申请状态='已批准'
begin
set @请假类型=(select 请假类型 from
www.eeworm.com/read/360827/10075845
txt 触发器1.txt
--触发器
CREATE trigger trUpdateOvertime
on dbo.员工的加班记录
for update
as
declare @申请状态 varchar(50),@加班类型 varchar(50),
@加班工资 float,@员工剩余假期 varchar(10)
set @申请状态=(select 申请状态 from inserted)
if @申请状态
www.eeworm.com/read/417208/11000233
sql 实例15(触发器).sql
--上课内容:第七章 存储过程及触发器 (触发器)
-- 7.2.1 触发器的概念:
-- 触发器是一种特殊的存储过程
-- 触发器定义在特定的表或视图上,在表中数据发生变化时自动强制执行
-- 触发器可以用于SQL Server约束、默认值和规则的完整性检查
-- 特点:
-- 1. 触发器可以强制比用 ...