代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/150539/12287087
sql 建库.sql
www.eeworm.com/read/150385/12296012
sql shoufei.sql
www.eeworm.com/read/338457/12306546
sql insertvalue.sql
--select * from test_dblib
/*
--insert into test_dblib (ch) values('ILOVE')
DELETE FROM test_dblib WHERE ch='ILOVE'
update test_dblib set _sint=456
update test_dblib set _sdate=getdate()
update
www.eeworm.com/read/338457/12306550
sql createdemo.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[test_dblib]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[test_dblib]
GO
CREATE TABLE [dbo].[test_dblib] (
www.eeworm.com/read/150209/12306605
sql blog.sql
# MySQL-Front Dump 2.5
#
# Host: localhost Database: blog
# --------------------------------------------------------
# Server version 4.1.10-nt
#
# Table structure for table 'boardinfo'
#
www.eeworm.com/read/338414/12307845
sql database.sql
Create database sampledb;
use sampledb;
CREATE TABLE tree (
item_id INT UNSIGNED not null AUTO_INCREMENT,
item_nm VARCHAR (200) DEFAULT '0',
item_order INT UNSIGNED DEFAULT '0',
item_de
www.eeworm.com/read/338395/12310386
sql createebdb.sql
/* Install EarnestBank database */
set nocount on
USE master
declare @dttm varchar(55)
select @dttm=convert(varchar,getdate(),113)
raiserror('Starting installation of Earne
www.eeworm.com/read/338395/12310388
sql createearnestbankobjects.sql
USE EarnestBank
go
/* -- Creating Objects for Earnest Bank*/
raiserror('Now at the create table section ....',0,1)
Go
raiserror('Creating EarnestBank_Registration....',0,1)
create table R
www.eeworm.com/read/150090/12315026
sql 1120.sql
CREATE INDEX SIDB2000.i_ryxx_ryzt
ON SIDB2000.TFF_RYXX(RYZT)
TABLESPACE SIMC
STORAGE(BUFFER_POOL DEFAULT)
NOLOGGING
NOPARALLEL
/
www.eeworm.com/read/150090/12315071
sql tsysfield.sql
INSERT INTO tSYSField
(ID,FIELDNAME,VISIBLE,CONDITION,TYPE,COMMENTS,TABLEID,TABLENAME,JOINCOND,ALIASTABLE)
VALUES
(100101,'DWID_FF',0,'','String','单位序号',1001,'tff_dwxx','','tff_dwxx')
/
INSERT IN