代码搜索:insert
找到约 10,000 项符合「insert」的源代码
代码结果 10,000
www.eeworm.com/read/345393/3199665
sql accountpayablemaster_insert.sql
CREATE TRIGGER AccountPayableMaster_Insert
ON AccountPayableMaster
FOR INSERT
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@SupplierID : 供应商编号
@Prepaid : 暂付款
*/
DECLARE @Sup
www.eeworm.com/read/345393/3199672
sql deliverydetail_insert.sql
CREATE TRIGGER DeliveryDetail_Insert
ON DeliveryDetail
FOR INSERT
AS
/* 如果新增记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@DeliveryID : 出货单号
@DeliveryProperty : 出货单属性
@DeliveryDate : 出货日
www.eeworm.com/read/345393/3199674
sql deliverymaster_insert.sql
CREATE TRIGGER DeliveryMaster_Insert
ON DeliveryMaster
FOR INSERT
AS
/*如果变动记录是0,就不执行*/
IF @@ROWCOUNT = 0 RETURN
/*定义变量
@DeliveryID : 出货单号
@DeliveryDate : 出货日期
@DeliveryProperty : 出货属性
@Custo
www.eeworm.com/read/345393/3199675
sql accountreceivabledetail_insert.sql
CREATE TRIGGER AccountReceivableDetail_Insert
ON AccountReceivableDetail
FOR INSERT
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@DeliveryID : 出货单号
@CustomerID : 客户编号
@Balanc
www.eeworm.com/read/345393/3199682
sql purchasedetail_insert.sql
CREATE TRIGGER PurchaseDetail_Insert
ON PurchaseDetail
FOR INSERT
AS
/* 如果新增记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@PurchaseID : 进货单号
@PurchaseProperty : 进货单属性
@PurchaseDate : 进货日
www.eeworm.com/read/345393/3199684
sql accountpayabledetail_insert.sql
CREATE TRIGGER AccountPayableDetail_Insert
ON AccountPayableDetail
FOR INSERT
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@PurchaseID : 进货单号
@SupplierID : 供应商编号
@Balance : 冲
www.eeworm.com/read/345393/3199685
sql accountreceivablemaster_insert.sql
CREATE TRIGGER AccountReceivableMaster_Insert
ON AccountReceivableMaster
FOR INSERT
AS
/* 如果修改记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@CustomerID : 客户编号
@Advance : 暂收款
*/
DECLARE
www.eeworm.com/read/345393/3199686
sql purchasemaster_insert.sql
CREATE TRIGGER PurchaseMaster_Insert
ON PurchaseMaster
FOR INSERT
AS
IF @@ROWCOUNT = 0 RETURN
/*定义变量
@PurchaseID : 进货单号
@PurchaseDate : 进货日期
@PurchaseProperty : 进货属性
@SupplierID : 供应商编号
@Amo
www.eeworm.com/read/345393/3199687
sql changedetail_insert.sql
CREATE TRIGGER ChangeDetail_Insert
ON ChangeDetail
FOR INSERT
AS
/* 如果新增记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@ProductID : 商品编号
@Quantity : 数量
*/
DECLARE @ProductID Char(10)
DE
www.eeworm.com/read/344386/3211004
c insert_test.c
/* Copyright (C) 2000 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Fou