代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/185834/8982132
sql 13.sql
use student_class
select distinct student.*
from student ,course,sc
where student.sclass=sc.sclass and student.sno=sc.sno
and student.sclass='2' and course.cpno='1' and course.cno=sc.cno
www.eeworm.com/read/185834/8982133
sql 14.sql
use student_class
select student.*
from student ,sc
where student.sclass=sc.sclass and student.sno=sc.sno
and cno='2' and grade =(
select max(grade )
from sc
)
www.eeworm.com/read/185798/8984223
sql multimedia.sql
# MySQL-Front 3.0 (Build 29.6)
CREATE TABLE animate (
ID char(15) NOT NULL default '0',
SubjectType char(15) NOT NULL default '媒体素材',
ObjectType char(15) NOT NULL default '所有学者',
Key
www.eeworm.com/read/185739/8988318
sql aspsessionstate.sql
/*
This query creates the ASPSessionState table used to temporarily hold
Session State information for use when switching between ASP "Classic" and
ASP.NET. The index below is optional and not rec
www.eeworm.com/read/283768/8989254
sql io统计.sql
----I/O统计1.
select substr(DF.Name, 1, 5) Drive,
SUM(FS.Phyblkrd + FS.Phyblkwrt) Total_IOs,
SUM(FS.Phyblkrd) Blocks_Read,
SUM(FS.Phyblkwrt) Blocks_Written
from V$FILESTAT FS
www.eeworm.com/read/283768/8989274
sql createtable.sql
---存储事例说明信息的表
drop table dbs ;
create table dbs
(db_nm varchar2(8) , /*事例 instance name */
host_nm varchar2(8) , /*host (server) name */
description varchar2(80) /*instance description*/
)
www.eeworm.com/read/283768/8989283
sql getdate.sql
spool ins_all.log
begin
insert into files
(db_nm ,
ts ,
check_date ,
file_nm ,
blocks)
select
upper('&&l') , /*insert database link ,instance name*/
tablespace_name , /*tablespace
www.eeworm.com/read/382919/8990510
sql guestbook.sql
CREATE TABLE `guestbook` (
`id` int(11) NOT NULL auto_increment,
`nickname` varchar(20) default NULL,
`content` text NOT NULL,
`ip` varchar(16) default NULL,
`adddate` varchar(24) NOT N
www.eeworm.com/read/426933/8990878
sql21
www.eeworm.com/read/283633/9001186
sql products.sql
CREATE TABLE Products
(
ProductID int IDENTITY (1,1) NOT NULL,
ProductName nvarchar (40) NOT NULL,
SupplierID int,
CategoryID int,
QuantityPerUnit nvarchar (20),
UnitP