代码搜索:trigger

找到约 3,730 项符合「trigger」的源代码

代码结果 3,730
www.eeworm.com/read/373132/9474670

c sysini.c

#include #include #include #include void MCU_Init(void) { TMOD = 0x21; // T1:Mode 2(8-bit), T0:Mode 1(16Bit) TH0 = TIMER_1ms_H; TL0 = TIM
www.eeworm.com/read/372945/9486687

txt readme.txt

/******************** (C) COPYRIGHT 2007 STMicroelectronics ******************** * File Name : readme.txt * Author : MCD Application Team * Version : V1.0 * Date
www.eeworm.com/read/175933/9524926

test main.test

# 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yo
www.eeworm.com/read/371861/9532787

conf lighttpd.conf

# lighttpd configuration file # # use it as a base for lighttpd 1.0.0 and above # # $Id: lighttpd.conf,v 1.7 2004/11/03 22:26:05 weigon Exp $ ############ Options you really have to take care of ####
www.eeworm.com/read/366616/9806637

test main.test

# 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yo
www.eeworm.com/read/366232/9824220

sql create.sql

/* The primary keys and foreign keys are still missing from this script. */ /* Sequences */ CREATE SEQUENCE SEQ_CHILD_OBJECT MINVALUE 1 MAXVALUE 999999999999999999999999999 INCREMENT BY
www.eeworm.com/read/169886/9834456

sql tr_czr.sql

--用于删除某个帐户时,相应的删除该帐户的操作记录 create trigger tr_czr on [dbo].[Czr] For delete As declare @czrname varchar(50) --选出被删除的账号 select @czrname=czrname from deleted --删除Czjl表中属于该帐户的操作记录 delete from czjl
www.eeworm.com/read/165216/10072037

sql tjy_delete.sql

create trigger tjy_delete on jy for delete as begin update xs set 借书数=借书数-1 where xs.借书证号 in (select deleted.借书证号 from dele
www.eeworm.com/read/165216/10072049

sql tjy_insert.sql

create trigger tjy_insert on jy for insert as begin update xs set 借书数=借书数+1 where xs.借书证号 in (select inserted.借书证号 from in
www.eeworm.com/read/164708/10092678

test main.test

# 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yo