代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/180925/5279572
sql createchatroom.sql
CREATE TABLE "USERTABLE"
(
"USER_ID" VARCHAR(10) NOT NULL,
"USER_NAME" VARCHAR(10) NOT NULL,
"USER_PASSWORD" VARCHAR(20) NOT NULL,
PRIMARY KEY ("USER_ID")
);
INSERT INTO usertable VAL
www.eeworm.com/read/180040/5291821
sql init.sql
drop table iFeedBackQs;
drop table iFeedBackAs;
create table iFeedBackQs
(
qid integer,
question varchar(1024),
choices varchar(2048),
visible boolean
);
create table iFeedBackAs
www.eeworm.com/read/179904/5301673
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/179904/5301677
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/179904/5301680
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/179904/5301683
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/178490/5316150
sql db.sql
-- --------------------------------------------------------
--
-- Table structure for table 'PRODUCT_CATEGORY'
--
DROP TABLE IF EXISTS PRODUCT_CATEGORY;
CREATE TABLE PRODUCT_CATEGORY (
CATEG
www.eeworm.com/read/178490/5316161
sql db.sql
DROP TABLE IF EXISTS ALBUM;
CREATE TABLE ALBUM (
ALBUM_ID int(16) NOT NULL auto_increment,
ALBUM_NAME varchar(255) NOT NULL default '',
ALBUM_URL varchar(255) NOT NULL default '',
ALBUM_
www.eeworm.com/read/178490/5316177
sql ajax.sql
-- --------------------------------------------------------
--
-- Table structure for table 'AJAX_LAYOUT'
--
DROP TABLE IF EXISTS AJAX_LAYOUT;
CREATE TABLE AJAX_LAYOUT (
LAYOUT_ID int(16)
www.eeworm.com/read/178490/5316205
sql db.sql
DROP TABLE IF EXISTS STUDENT;
CREATE TABLE STUDENT (
STUDENT_ID int(16) NOT NULL auto_increment,
STUDENT_NAME varchar(255) default '',
STUDENT_CLASS varchar(255) default '',
PRIMARY KEY