代码搜索:Sql

找到约 10,000 项符合「Sql」的源代码

代码结果 10,000
www.eeworm.com/read/252579/4402507

sql authors.sql

CREATE TABLE Authors (Author_Id CHAR(4), Name CHAR(25), Fname CHAR(25)) INSERT INTO Authors VALUES ('ALEX', 'Alexander', 'Christopher') INSERT INTO Authors VALUES ('BROO', 'Brooks', 'Frederick P.')
www.eeworm.com/read/252579/4402509

sql books.sql

CREATE TABLE Books (Title CHAR(60), ISBN CHAR(13), Publisher_Id CHAR(6), Price DECIMAL(10,2)) INSERT INTO Books VALUES ('A Guide to the SQL Standard', '0-201-96426-0', '0201', '47.95') INSERT INTO B
www.eeworm.com/read/252579/4402510

sql publishers.sql

CREATE TABLE Publishers (Publisher_Id CHAR(6), Name CHAR(30), URL CHAR(80)) INSERT INTO Publishers VALUES ('0201', 'Addison-Wesley', 'www.aw-bc.com') INSERT INTO Publishers VALUES ('0471', 'John Wil
www.eeworm.com/read/252579/4402512

sql booksauthors.sql

CREATE TABLE BooksAuthors (ISBN CHAR(13), Author_Id CHAR(4), Seq_No INT) INSERT INTO BooksAuthors VALUES ('0-201-96426-0', 'DATE', 1) INSERT INTO BooksAuthors VALUES ('0-201-96426-0', 'DARW', 2) IN
www.eeworm.com/read/252534/4403350

tld sql.tld

www.eeworm.com/read/252403/4404927

sql createtypes.sql

Rem Rem Copyright (c) 2006 ZeroC, Inc. All rights reserved. Rem Rem This copy of Ice is licensed to you under the terms described in the Rem ICE_LICENSE file included in this distribution. Rem
www.eeworm.com/read/252301/4410325

js sql.js

/* * CodePress regular expressions for SQL syntax highlighting * By Merlin Moncure */ // SQL Language.syntax = [ { input : /\'(.*?)(\')/g, output : '\'$1$2' }, // strings single qu
www.eeworm.com/read/162388/5547793

sql mssqlserver.sql

Create Table T_LOG_SQLLog ( FID VARCHAR(100) NOT NULL ,FBeginTime DateTime NOT NULL ,FEndTime DateTime NOT NULL ,FSQL VARCHAR(4000) NOT NULL ,FSQLType INT,FParameters VARCHAR(2000),CONSTRAINT PK_SQLLo
www.eeworm.com/read/162388/5547797

sql oracle.sql

CREATE TABLE T_LOG_SQLLog (FID VARCHAR2 (100) NOT NULL, FBeginTime TIMESTAMP NOT NULL, FEndTime TIMESTAMP NOT NULL, FSQL VARCHAR2 (4000) NOT NULL, FSQLType NUMBER (10), FParameters VARCHAR2 (2000), CO
www.eeworm.com/read/162053/5548924

tld sql.tld