代码搜索:Sql
找到约 10,000 项符合「Sql」的源代码
代码结果 10,000
www.eeworm.com/read/353440/3085708
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/353362/3086298
sql employeeinformationmsok.sql
CREATE DATABASE EmployeeInformationMS
--DROP DATABASE EmployeeInformationMS
go
USE EmployeeInformationMS
go
/*用户信息表*/
CREATE TABLE UserInformation
(
User_ID INT IDENTITY(1,1),
Us
www.eeworm.com/read/352328/3095262
sql creattable.sql
create table UserLogin(UserID varchar(6) primary key,--用户登陆信息表
UserName varchar(20) not null,
Password varchar(20) not null,
Use
www.eeworm.com/read/352328/3095263
sql proctable.sql
/*create proc AddNewMember --添加新加盟成员
@TheaterID varchar(4),
@TheaterName varchar(20),
@AdminID varchar(6),
@LocationCity varchar(20),
@Address varchar(50),
@TelNo varchar(15),
@L
www.eeworm.com/read/352283/3095659
sql pl.sql
/*
$Id: pl.sql,v 1.4 2005/05/02 15:07:26 unsaved Exp $
SQL File to illustrate the use of SqlTool PL features.
Invoke like
java -jar .../hsqldb.jar .../pl.sql mem
www.eeworm.com/read/352283/3095663
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/352283/3095666
sql sampledata.sql
/*
* $Id: sampledata.sql,v 1.3 2007/08/09 03:22:21 unsaved Exp $
*
* Creates and populates database objects with sample data.
* This file was created by grabbing the commands made by creati
www.eeworm.com/read/352283/3095669
sql plsql.sql
/*
* $Id: plsql.sql,v 1.4 2007/08/09 03:22:21 unsaved Exp $
*
* This example is copied from the "Simple Programs in PL/SQL"
* example by Yu-May Chang, Jeff Ullman, Prof. Jennifer Widom at
*