代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/159411/10652892
gif sql.gif
www.eeworm.com/read/277134/10665769
sql schema.sql
-- schema.sql - PL/SQL procedures/functions for OCCI sample
connect scott/tiger;
drop table Books;
drop type KeywordsList;
drop package OCCIDemo1;
create type KeywordsList as varray(20) of varchar2
www.eeworm.com/read/159357/10665948
sql personnel.sql
www.eeworm.com/read/159356/10666214
sql myfactory.sql
www.eeworm.com/read/159355/10666385
sql student.sql
www.eeworm.com/read/159352/10666420
sql student.sql
www.eeworm.com/read/159334/10668728
sql goodsunit.sql
create table tGoodsUnit (
GoodsID int not null,
Unit varchar(16) not null,
Scale float not null,
BuyPrice float null,
SalePrice1 float null,
SalePrice2 float null,
SalePrice3 float null,
www.eeworm.com/read/159334/10668733
sql deletetrigger.sql
CREATE TRIGGER "tSaleOrderMst_DTrig" ON tSaleOrderMst FOR DELETE AS
SET NOCOUNT ON
/* * PREVENT DELETES IF DEPENDENT RECORDS IN 'tReceiveDtl' */
IF (SELECT COUNT(*) FROM deleted, tReceiveDtl WHERE
www.eeworm.com/read/159334/10668743
sql updatetrigger.sql
CREATE TRIGGER "tSaleOrderMst_UTrig" ON tSaleOrderMst FOR UPDATE AS
SET NOCOUNT ON
/* * PREVENT UPDATES IF NO MATCHING KEY IN 'tCustoms' */
IF UPDATE(customID)
BEGIN
IF (SELECT COUNT(
www.eeworm.com/read/159334/10668752
sql tstoreposition.sql
create table tStorePosition (
StoreID int not null,
iOrder int not null,
property1 varchar(50) null,
property2 varchar(50) null,
property3 varchar(50) null,
Quantity float null,
LeftQ