代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/213762/15125956
sql first.sql
create database Market
create table Person
( person_no char(10) primary key,
person_name char(20),
person_code char(10),
person_limit int
)
create table Goods
( goods_no char(10) pri
www.eeworm.com/read/213543/15130661
sql wjgl.sql
www.eeworm.com/read/213413/15135123
txt sql.txt
CREATE DATABASE Hospital
GO
USE Hospital
GO
CREATE TABLE BaseType
(Id int PRIMARY KEY IDENTITY,
TypeId tinyint,
TypeName varchar(30)
)
GO
USE Hospital
GO
CREATE TAB
www.eeworm.com/read/213349/15136585
sql populate.sql
USE book_sc;
INSERT INTO books VALUES ('0672317842','Luke Welling and Laura Thomson','PHP and MySQL Web Development',1,49.99,
'PHP & MySQL Web Development teaches the reader to develop dynamic, secu
www.eeworm.com/read/213349/15136587
sql bookmarks.sql
create database bookmarks;
use bookmarks;
create table user (
username varchar(16) primary key,
passwd char(40) not null,
email varchar(100) not null
);
create table bookmark (
username var
www.eeworm.com/read/213349/15136667
sql pollsetup.sql
create database poll;
use poll;
create table poll_results (
candidate varchar(30),
num_votes int
);
insert into poll_results values
('John Smith', 0),
('Mary Jones', 0),
('F
www.eeworm.com/read/213349/15136726
sql populate.sql
use mail;
insert into users values
('user', sha1('password'), 'email@host.domain', 'Full Name');
insert into accounts values
('user', 'localhost', '110', 'POP3', 'user', 'password', ''),
('user',
www.eeworm.com/read/213349/15136735
sql createauthdb.sql
create database auth;
use auth;
create table authorised_users ( name varchar(20),
password varchar(40),
primary key (na
www.eeworm.com/read/213349/15136820
sql bookorama.sql
create table customers
( customerid int unsigned not null auto_increment primary key,
name char(50) not null,
address char(100) not null,
city char(30) not null
);
create table orders
( orderid
www.eeworm.com/read/213340/15136883
txt sql.txt
CREATE DATABASE `jspmo`;
CREATE TABLE `jspmo` (
`id` int(11) NOT NULL auto_increment,
`title` varchar(50) NOT NULL default '',
`name` varchar(20) default NULL,
`QQ` varchar(15) default