代码搜索:insert
找到约 10,000 项符合「insert」的源代码
代码结果 10,000
www.eeworm.com/read/399439/7863647
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/399439/7863649
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/399439/7863653
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/399439/7863658
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/199129/7885978
bmp tb_insert.bmp
www.eeworm.com/read/399115/7891232
gif insert_table.gif
www.eeworm.com/read/299064/7894109
sin insert-header.sin
# Sed script that inserts the file called HEADER before the header entry.
#
# At each occurrence of a line starting with "msgid ", we execute the following
# commands. At the first occurrence, insert
www.eeworm.com/read/198604/7924663
vhd anc_insert.vhd
--------------------------------------------------------------------------------
-- anc_insert.vhd
--
-- SDI ANC packet insertion module
--
--
--
-- Author: John F. Snow
--
www.eeworm.com/read/433514/7924905
asm insert2.asm
;双字节表格的插入算法
FRONT EQU 2000H ;表格首址。
MAXH DATA 30H ;元素个数最大值存放单元(高字节)。
MAXL DATA 31H ;元素个数最大值存放单元(低字节)。
NUMBH DATA 32H ;已有元素个数存放单元(高字节)。
NUMBL DATA 33H ;已有元素个数存放单元(低字节)。
IH DATA 34H ;待插入元素的序号存放单元(高
www.eeworm.com/read/398665/7929814