代码搜索:trigger
找到约 3,730 项符合「trigger」的源代码
代码结果 3,730
www.eeworm.com/read/173349/9661941
tcl omitted.tcl
#
# Run this script to generated a omitted.html output file
#
set rcsid {$Id: omitted.tcl,v 1.10 2005/11/03 00:41:18 drh Exp $}
source common.tcl
header {SQL Features That SQLite Does Not Implement}
p
www.eeworm.com/read/205013/15330205
tcl omitted.tcl
#
# Run this script to generated a omitted.html output file
#
set rcsid {$Id: omitted.tcl,v 1.10 2005/11/03 00:41:18 drh Exp $}
source common.tcl
header {SQL Features That SQLite Does Not Implement}
p
www.eeworm.com/read/200302/15435775
1 scope.1
.\" This file Copyright (C) 1994-95 Jeff Tranter
.\" (Jeff_Tranter@Mitel.COM)
.\" It may be distributed under the GNU Public License, version 2, or
.\" any higher version. See section COPYING of the
www.eeworm.com/read/100266/15879210
doc dist.doc
VTC Distribution Documentation
------------------------------
This documentation describes the operation of the VTC code that comes
with the VT distribution. This code creates a higher-level user
in
www.eeworm.com/read/428400/8871472
sql createtrigger2.sql
create trigger trigger2
on optional_score
after update
as
if(select grade from optinal_score)='不合格'
insert into optional_score (note)values('补考')
www.eeworm.com/read/351426/10652390
vhd test_stp.vhd
-- megafunction wizard: %SignalTap II Logic Analyzer%
-- GENERATION: STANDARD
-- VERSION: WM1.0
-- MODULE: sld_signaltap
-- ============================================================
-- File
www.eeworm.com/read/265331/11268253
sql 严琼.sql
-- 【应用案例】图书馆有时会对某图书的复本量进行更新,如增购某图书
-- 复本,或因各种原因导致某图书丢失部分复本。复本量的更改直接导致库
-- 存量的改变,但为了不因误操作破坏数据完整性,我们不能对库存量直接
-- 修改,可以通过触发器,监测复本量的改变,自动修改库存量,这就可以
-- 用到对选定列的更新进行监测的方法。
-- ======================== ...