代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/253705/12204388
sql processmattlist.sql
CREATE PROCEDURE ProcessMattList(
@sID varchar(50),
@sLinkID varchar(50),
@sItemID varchar(50),
@sName varchar(100),
@sModel varchar(50),
@sUnit varchar
www.eeworm.com/read/253705/12204402
sql gsaccount.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GsAccount]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[GsAccount]
--GO
CREATE TABLE [dbo].[GsAccount] (
www.eeworm.com/read/253705/12204407
sql createautobackupjob.sql
/*if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[createAutoBackupJob]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[createAutoBackupJob]
--GO
--SET Q
www.eeworm.com/read/253705/12204412
sql getidhead.sql
CREATE FUNCTION GetIdHead(@sUseage varchar(5)
)
RETURNS varchar(2)
AS
BEGIN
/*
* Create by limux at 2006-09-20 22:50
*/
if @sUseage = ''
return ''
declare @s
www.eeworm.com/read/151484/12205770
sql tlcyglxt.sql
www.eeworm.com/read/339738/12207555
sql authors.sql
CREATE TABLE Authors (Author_Id CHAR(4), Name CHAR(25), URL CHAR(80))
INSERT INTO Authors VALUES ('ARON', 'Aronson, Larry', 'www.interport.net/~laronson/Homepage.html')
INSERT INTO Authors VALUES ('
www.eeworm.com/read/339738/12207558
sql books.sql
CREATE TABLE Books (Title CHAR(60), ISBN CHAR(13), Publisher_Id CHAR(5), URL CHAR(80), Price DECIMAL(10,2))
INSERT INTO Books VALUES ('Beyond HTML', '0-07-882198-3', '00788', '', 27.95)
INSERT INTO
www.eeworm.com/read/339738/12207561
sql publishers.sql
CREATE TABLE Publishers (Publisher_Id CHAR(5), Name CHAR(30), URL CHAR(80))
INSERT INTO Publishers VALUES ('01262', 'Academic Press', 'www.apnet.com/')
INSERT INTO Publishers VALUES ('18835', 'Corio
www.eeworm.com/read/339738/12207568
sql booksauthors.sql
CREATE TABLE BooksAuthors (ISBN CHAR(13), Author_Id CHAR(4), Seq_No INT)
INSERT INTO BooksAuthors VALUES ('0-07-882198-3', 'KARP', 1)
INSERT INTO BooksAuthors VALUES ('0-78970541-9', 'EVAN', 1)
INS