代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/325240/3485251
sql addressbook.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:addressbook;create=true'
;
drop table addresses
;
drop table phoneNumbers
;
drop table emailAddresses
;
drop table names
;
create table
www.eeworm.com/read/325240/3485256
sql books.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:books;create=true'
;
drop table authorISBN
;
drop table titles
;
drop table publishers
;
drop table authors
;
create table publishers (
www.eeworm.com/read/325240/3485312
sql guestbook.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:guestbook;create=true'
;
drop table guests
;
create table guests (
firstName varchar (20) NOT NULL ,
lastName varchar (20) NOT NULL ,
www.eeworm.com/read/325240/3485834
sql tips.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:tips;create=true'
;
drop table tipInfo
;
create table tipInfo (
tipID int DEFAULT AUTOINCREMENT,
tipName varchar (255) NOT NULL,
tipDes
www.eeworm.com/read/325240/3485859
sql productinsert.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:Bookstore;create=true'
;
insert into Product (ISBN,title,publisher,author,image,price,pages) values ('0130895725','C How to Program','Prentice Ha
www.eeworm.com/read/325240/3485872
sql sequencefactory.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:Bookstore;create=true';
insert into SequenceFactory (tableName, nextID) values ('Customer','0');
insert into SequenceFactory (tableName, nextID)
www.eeworm.com/read/325240/3485939
sql animalsurvey.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:animalsurvey;create=true'
;
drop table surveyresults
;
create table surveyresults (
id int NOT NULL ,
surveyoption varchar (20) NOT NULL ,
www.eeworm.com/read/325240/3485968
sql addressbook.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:addressbook;create=true'
;
drop table addresses
;
drop table phoneNumbers
;
drop table emailAddresses
;
drop table names
;
create table
www.eeworm.com/read/325240/3485970
sql books.sql
connect 'jdbc:rmi://localhost:1099/jdbc:cloudscape:books;create=true'
;
drop table authorISBN
;
drop table titles
;
drop table publishers
;
drop table authors
;
create table publishers (
www.eeworm.com/read/324537/3501130
sql experience.sql
USE HR
GO
CREATE TABLE Experience
(Id tinyint PRIMARY KEY IDENTITY,
Emp_Id int NOT NULL,
Start_Date char(10),
End_Date char(10),
School_Org varchar(50),
Title varchar(20