代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/324959/13235883
txt 折扣触发器.txt
CREATE TRIGGER 折扣
ON 订票
after INSERT
AS begin
if((select 航程 from 航线,航空服务表,订票 where 航空服务表.航班编号=订票.航班编号 and 航空服务表.航线编号=航线.航线编号)>=9000)
update 订票
set 折扣=折扣*0.6
else if((select 航程 from 航线,航空
www.eeworm.com/read/141300/5770411
cir schmitt.cir
schmitt ckt - ecl compatible schmitt trigger
.width in=72
.opt list node lvlcod=2
* The original line is below
*.opt acct list node lvlcod=2
.tran 10ns 1000ns
vin 1 0 pulse(-1.6 -1.2 10ns 400ns 400n
www.eeworm.com/read/169773/5410984
txt 数据库1.txt
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
--功能:更新人员触发器(更新员工自助相应的用户信息)
--编写:陈宇 2004-08-16
ALTER TRIGGER TR_UpdateAssUser ON dbo.A001
--WITH ENCRYPTION
FOR UPDATE
AS
BEGIN
IF UPD
www.eeworm.com/read/313796/3641251
java popupmenuinterceptortest.java
package org.uispec4j.interception;
import org.uispec4j.MenuItem;
import org.uispec4j.Trigger;
import org.uispec4j.UISpec4J;
import org.uispec4j.Window;
import org.uispec4j.utils.AssertionFailur
www.eeworm.com/read/141300/5770434
cir one-shot.cir
*One-shot Trigger.
*This cicruit generates a pulse of a predetermined width
*triggered by an input event. BSIM3v3.1 test.
*A two-gate delay element
Md1 4 in Vdd Vdd PMOS w=3.6u l=1.2u
Md2 4 in 0 0
www.eeworm.com/read/141300/5770479
cir one-shot.cir
*One-shot Trigger.
*This cicruit generates a pulse of a predetermined width
*triggered by an input event. BSIM3 test.
*A two-gate delay element
Md1 4 in Vdd Vdd PMOS w=3.6u l=1.2u
Md2 4 in 0 0 NMOS
www.eeworm.com/read/376468/2710530
sql tr_insertmcrecord.sql
CREATE TRIGGER dbo.tr_insertmcrecord ON dbo.mcrecord
FOR INSERT AS
/*规则:1.从个人信息表中的个人帐户余额thisleave中减去IC卡支付cardcons
累加IC卡支付cardcons到selfconsume
累加合规费用fundadd(门诊时为0
www.eeworm.com/read/431972/8643391
sql 触发器.sql
select * From tb_topic
select * from tb_reply
--将主题信息表中的ID插入到回复信息表的触发器开始
--作者:SK
--时间:2005-05-17
Alter Trigger t_InsertReply
On tb_topic
For Insert
As
Insert into tb_reply (Topic
www.eeworm.com/read/450315/7485757
txt db2应用经验《二》.txt
DB2应用经验《二》
//建立触发器
CREATE TRIGGER zjt_tables_del
AFTER DELETE ON zjt_tables
REFERENCING OLD AS O
FOR EACH ROW MODE DB2SQL
Insert into zjt_tables1 values(substr(o.tabschema,1,8),substr(o.tab