代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/288405/4007225
sql tri_物料与客户.sql
IF EXISTS (SELECT NAME FROM SYSOBJECTS WHERE NAME='TRI_物料与客户' AND TYPE='TR')
DROP TRIGGER TRI_物料与客户
GO
CREATE TRIGGER [TRI_物料与客户] ON [dbo].[物料与客户对照表]
FOR INSERT, UPDATE, DELETE
AS
DECLARE @税率编
www.eeworm.com/read/288405/4007326
sql tri_采购订单明细.sql
if exists (select name from sysobjects where name='TRI_采购订单明细' and type='TR')
drop TRIGGER TRI_采购订单明细
go
create TRIGGER [TRI_采购订单明细] ON 采购订单明细表
for insert,update
as
declare
@key_id int,
@订购数量
www.eeworm.com/read/160745/5565973
tri_
if exists (select name from sysobjects where name='TRI_采购订单明细' and type='TR')
drop TRIGGER TRI_采购订单明细
go
create TRIGGER [TRI_采购订单明细] ON 采购订单明细表
for insert,update
as
declare
@key_id int,
@订购数量
www.eeworm.com/read/247504/12655492
sql tri_采购订单明细.sql
if exists (select name from sysobjects where name='TRI_采购订单明细' and type='TR')
drop TRIGGER TRI_采购订单明细
go
create TRIGGER [TRI_采购订单明细] ON 采购订单明细表
for insert,update
as
declare
@key_id int,
@订购数量
www.eeworm.com/read/101039/6260476
sql c_allocation_trg.sql
CREATE OR REPLACE TRIGGER C_Allocation_Trg
AFTER INSERT OR UPDATE
ON C_Allocation
FOR EACH ROW
DECLARE
/*************************************************************************
* The content
www.eeworm.com/read/101039/6260482
sql c_elementvalue_trg.sql
CREATE OR REPLACE TRIGGER C_ElementValue_Trg
AFTER INSERT OR UPDATE OF Name
ON C_ElementValue
FOR EACH ROW
/*************************************************************************
* The cont
www.eeworm.com/read/101039/6260484
sql c_bpartner_trg.sql
CREATE OR REPLACE TRIGGER C_BPartner_Trg
AFTER INSERT
ON C_BPartner
FOR EACH ROW
DECLARE
/*************************************************************************
* The contents of this file
www.eeworm.com/read/101039/6260487
sql m_inventoryline_trg.sql
CREATE OR REPLACE TRIGGER M_InventoryLine_Trg
AFTER DELETE OR INSERT OR UPDATE
ON M_InventoryLine
FOR EACH ROW
DECLARE
/*************************************************************************
www.eeworm.com/read/101039/6260491
sql ad_fieldgroup_trg.sql
CREATE OR REPLACE TRIGGER AD_FieldGroup_Trg
AFTER INSERT OR UPDATE OF Name
ON AD_FieldGroup
FOR EACH ROW
/******************************************************************************
* ** Co
www.eeworm.com/read/101039/6260492
sql m_inoutline_trg.sql
CREATE OR REPLACE TRIGGER M_InOutLine_Trg
AFTER DELETE OR INSERT OR UPDATE
ON M_InOutLine
FOR EACH ROW
DECLARE
/*************************************************************************
* The