代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/205046/5026329
sql sample.sql
/*
$Id: sample.sql,v 1.5 2005/05/02 15:07:27 unsaved Exp $
Examplifies use of SqlTool.
PCTASK Table creation
*/
/* Ignore error for these two statements */
\c true
DROP TABLE pctasklist;
www.eeworm.com/read/205046/5026332
sql sampledata.sql
/*
* $Id
*
* Creates and populates database objects with sample data.
* This file was created by grabbing the commands made by creating
* sample data with the DatabaseManager utility.
*/
D
www.eeworm.com/read/205046/5026335
sql plsql.sql
/*
* $Id: plsql.sql,v 1.3 2005/05/02 15:09:11 unsaved Exp $
*
* This example is copied from the "Simple Programs in PL/SQL"
* example by Yu-May Chang, Jeff Ullman, Prof. Jennifer Widom at
* the S
www.eeworm.com/read/203923/5036978
sql vote.sql
CREATE TABLE [dbo].[vote_tab] (
[id] [int] NOT NULL ,
[v_item] [nvarchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
[v_num] [int] NULL
) ON [PRIMARY]
GO
www.eeworm.com/read/203923/5036999
sql prodb.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[associator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[associator]
GO
if exists (select * from dbo.sysob
www.eeworm.com/read/200982/5062715
sql 升级脚本.sql
-- 修改所有的存储过程
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[sp_ApplyForAJob]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[sp_ApplyForAJob]
GO
if exi