代码搜索:insert
找到约 10,000 项符合「insert」的源代码
代码结果 10,000
www.eeworm.com/read/436521/7768617
c insert3.c
/*
** Insert into an ordered, singly linked list. The arguments are
** a pointer to the first node in the list, and the value to
** insert.
*/
#include
#include
#include "
www.eeworm.com/read/436521/7768618
c insert1.c
/*
** Insert into an ordered, singly linked list. The arguments are
** a pointer to the first node in the list, and the value to
** insert.
*/
#include
#include
#include "
www.eeworm.com/read/435917/7781080
test insert3.test
# 2005 January 13
#
# 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 your
www.eeworm.com/read/435917/7781213
test insert2.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/399439/7863542
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/399439/7863591
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/399439/7863601
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/399439/7863604
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/399439/7863637
sql purchasedetail_insert.sql
CREATE TRIGGER PurchaseDetail_Insert
ON PurchaseDetail
FOR INSERT
AS
/* 如果新增记录数是0就结束触发程序 */
IF @@ROWCOUNT = 0 RETURN
/* 定义变量
@PurchaseID : 进货单号
@PurchaseProperty : 进货单属性
@PurchaseDate : 进货日