代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/126953/14392378
h sql.h
/*
* sql.h
*
* $Id: sql.h,v 1.2 1999/12/09 13:47:35 source Exp $
*
* ODBC defines
*
* The iODBC driver manager.
*
* Copyright (C) 1995 by Ke Jin
*
* This library i
www.eeworm.com/read/126953/14392492
h sql.h
/******************************************************************************
**
** Source File Name: SQL
**
** (C) COPYRIGHT International Business Machines Corp. 1987, 1999
** All Rights Reserve
www.eeworm.com/read/126803/14402012
sql update.sql
-- update示例
-- 更新jobs表中的数据
update jobs
set job_desc = 'update demo',
min_lvl = 50,
max_lvl = 170
where job_id = 15
www.eeworm.com/read/126803/14402028
sql insert语句.sql
-- insert语句示例
insert into jobs(job_desc, min_lvl, max_lvl)
values('d', 20, 100)
www.eeworm.com/read/126803/14402032
sql 多行注释.sql
/* 显示authors表中的全部数据
这里的注释语句为多行 */
select *
from /*代码中的注释*/ authors
www.eeworm.com/read/126803/14402034
sql delete.sql
-- delete示例
-- 删除jobs表中的数据
delete from jobs
where job_id = 16
www.eeworm.com/read/126803/14402035
sql having子句.sql
-- 显示每个出版商出版的所有书的平均价格,
-- 但只显示平均价格超过10.00美元的书
SELECT pub_id, AVG(price)
FROM titles
GROUP BY pub_id
HAVING (AVG(price) > 10)
www.eeworm.com/read/126494/14420197
sql sqlsetup.sql
IF EXISTS(Select * From sysobjects where name = 'db_Administer' )
DROP TABLE db_Administer
GO
CREATE TABLE [db_Administer] (
[aID] [Tinyint] IDENTITY (1, 1) PRIMARY KEY CLUSTERED NOT NULL ,