代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/205865/15304993
sql clitest.sql
open 'clitest';
create table persons (name string,
salary int8,
address string,
weight real8,
subordinates array of reference to p
www.eeworm.com/read/205865/15305237
sql words.sql
drop wordtmp
create btree wordtmp
insert wordtmp ("Ababa", 8)
insert wordtmp ("abbey", 18)
insert wordtmp ("abed", 28)
insert wordtmp ("abetting", 38)
insert wordtmp ("abjure", 48)
insert wordtmp ("ab
www.eeworm.com/read/205865/15305238
sql boxes.sql
drop boxtmp
create rtree boxtmp
insert boxtmp ((12654,12699,8987,9028),3)
insert boxtmp ((22614,22689,4626,4680),4)
insert boxtmp ((43217,43263,47217,47296),5)
insert boxtmp ((6182,6184,8379,8397),6)
www.eeworm.com/read/205865/15305295
sql testddl.sql
open 'testddl'; -- database should be initialized by "testddl" program
delete from Record;
insert into Record values ((('year 1998', 1998), ('year 1999', 1999),
('year 2000', 2000)), ('Merry Christm
www.eeworm.com/read/205854/15305405
sql gbook.sql
# phpMyAdmin MySQL-Dump
# version 2.2.6
# http://phpwizard.net/phpMyAdmin/
# http://www.phpmyadmin.net/ (download page)
#
# 主机: localhost
# 建立日期: Dec 23, 2002 at 01:47 AM
# 伺服机版本: 3.23.40
# PH
www.eeworm.com/read/205714/15309619
sql myfactory.sql
www.eeworm.com/read/205637/15310549
sql patient.sql
USE Hospital
GO
CREATE TABLE Patient
( Id int IDENTITY PRIMARY KEY,
Name varchar(50),
IDNum varchar(30),
Sex varchar(2),
Age int,
Marry varchar(8)
www.eeworm.com/read/205637/15310550
sql medicine.sql
USE Hospital
GO
CREATE TABLE Medicine
( MedId int IDENTITY PRIMARY KEY,
MedName varchar(50),
TypeId int,
UnitId int,
BuyPrice float, --进货价格,计算利润用
SalePrice
www.eeworm.com/read/205637/15310552
sql basetype.sql
USE Hospital
GO
CREATE TABLE BaseType
(Id int PRIMARY KEY IDENTITY,
TypeId tinyint,
TypeName varchar(30)
)
GO