“-------不论你能够做什么,或是在梦想什么……开始去做就是。勇敢中包含了天赋、能力和魔力。 ——歌德”

精妙SQL语句

上一篇 / 下一篇  2008-10-02 19:19:42 / 个人分类:测试技术

英语学习
  • 测试英语术语:
  • 日常英语:
51Testing软件测试网)ie7O1FU9B'z&D

下列语句部分是Mssql语句,不可以在access中使用。

N:sqE8lq/U\051Testing软件测试网|NuPmF

SQL分类:51Testing软件测试网+i&a }x DX p7l R
DDL—数据定义语言(CREATE,ALTER,DROP,DECLARE)
F'g"lk ]-qR0DML—数据操纵语言(SELECT,DELETE,UPDATE,INSERT)51Testing软件测试网;N~4A U4t}$GW@
DCL—数据控制语言(GRANT,REVOKE,COMMIT,ROLLBACK)

0EVX1z$[t0

s4FU}8IA&F `0首先,简要介绍基础语句:
&`'@`O9m0Z01、说明:创建数据库51Testing软件测试网R,Qge'g"~0s"R
CREATE DATABASE database-name
+oy)]@9L G%h*M T02、说明:删除数据库51Testing软件测试网9rbSP$la%Y}0T `-}[
drop database dbname51Testing软件测试网;]D h {$H!eW
3、说明:备份sql server
,Aa_)nK]? @3x0--- 创建 备份数据的 device
(V|SyZN f9M(n0USE master
M6D3s%v#C9]0EXEC sp_addumpdevice 'disk', 'testBack', 'c:\mssql7backup\MyNwind_1.dat'
'XK4WPDI;Z0--- 开始 备份51Testing软件测试网a?]#B p(R
BACKUP DATABASE pubs TO testBack51Testing软件测试网Hs2y{#`
4、说明:创建新表51Testing软件测试网$o NxFf D\
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)51Testing软件测试网Gw\ rT
根据已有的表创建新表:51Testing软件测试网5v(H;[O)tq_6zf
A:create table tab_new like tab_old (使用旧表创建新表)51Testing软件测试网)@H-[:] Ky
B:create table tab_new as select col1,col2… from tab_old definition only51Testing软件测试网:P+g x@AdLw2x
5、说明:删除新表drop table tabname51Testing软件测试网K5tw7Hk?3K
6、说明:增加一个列
*G i1f6s&^:N0Alter table tabname add column col type
{|I*dvk3c P0注:列增加后将不能删除。DB2中列加上后数据类型也不能改变,唯一能改变的是增加varchar类型的长度。51Testing软件测试网|_;n2z&A#Y
7、说明:添加主键: Alter table tabname add primary key(col)
t2C1XW5u%P0说明:删除主键: Alter table tabname drop primary key(col)
y0^ wEm4mL)~ I8}08、说明:创建索引:create [unique] index idxname on tabname(col….)51Testing软件测试网|"?+d [Y@'Itm1Y
删除索引:drop index idxname
f} t!`L#pI0注:索引是不可更改的,想更改必须删除重新建。51Testing软件测试网 uvd,Y^{
9、说明:创建视图:create view viewname as select statement51Testing软件测试网 Z9\Ve(G:Q)w1I2A
删除视图:drop view viewname51Testing软件测试网9nM ]cM }
10、说明:几个简单的基本的sql语句
-^Fv] F sAcP9\0选择:select * from table1 where 范围51Testing软件测试网N-r.K |y;zH4B
插入:insert into table1(field1,field2) values(value1,value2)
$a`N.us Qf(E0删除:delete from table1 where 范围51Testing软件测试网ZplV(v.C7CK,B H
更新:update table1 set field1=value1 where 范围51Testing软件测试网#h M{.f+w^i2jG
查找:select * from table1 where field1 like ’%value1%’ ---like的语法很精妙,查资料!51Testing软件测试网qlc Ur eO b!t
排序:select * from table1 order by field1,field2 [desc]51Testing软件测试网"\)c5uVkk*p N\ACV
总数:select count * as totalcount from table151Testing软件测试网Vt!N.k pw&d6|5XC
求和:select sum(field1) as sumvalue from table151Testing软件测试网pn_4e vVC;JM!z'D
平均:select avg(field1) as avgvalue from table1
z p9B$V3e&qLp0最大:select max(field1) as maxvalue from table1
j?5bZ4s3An0最小:select min(field1) as minvalue from table151Testing软件测试网U|DziR
11、说明:几个高级查询运算词
2zt9cW:N0[Y,N+j6Uh0A: UNION 运算符51Testing软件测试网{j:|XU#]9ysO
UNION 运算符通过组合其他两个结果表(例如 TABLE1 和 TABLE2)并消去表中任何重复行而派生出一个结果表。当 ALL 随 UNION 一起使用时(即 UNION ALL),不消除重复行。两种情况下,派生表的每一行不是来自 TABLE1 就是来自 TABLE2。51Testing软件测试网!aHR2_Sy'c|W"qg
B: EXCEPT 运算符51Testing软件测试网Z1R5N,Z8kPXyx
EXCEPT 运算符通过包括所有在 TABLE1 中但不在 TABLE2 中的行并消除所有重复行而派生出一个结果表。当 ALL 随 EXCEPT 一起使用时 (EXCEPT ALL),不消除重复行。51Testing软件测试网)Vz7z%sQ(H
C: INTERSECT 运算符51Testing软件测试网8w!GPy7aO'|S%v
INTERSECT 运算符通过只包括 TABLE1 和 TABLE2 中都有的行并消除所有重复行而派生出一个结果表。当 ALL 随 INTERSECT 一起使用时 (INTERSECT ALL),不消除重复行。
.Ho!l~W"nK R8~0注:使用运算词的几个查询结果行必须是一致的。51Testing软件测试网g2d Y$rd6B k A } r3l
12、说明:使用外连接
6b}G!Wze'{M `/`0A、left outer join:
&}R(f"R#f)U L;o;a6xZ0左外连接(左连接):结果集几包括连接表的匹配行,也包括左连接表的所有行。51Testing软件测试网h4_b$I7FJ*PFR
SQL: select a.a, a.b, a.c, b.c, b.d, b.f from a LEFT OUT JOIN b ON a.a = b.c
F2G/Odj"\)B)s%f0B:right outer join:51Testing软件测试网 S4i,C7A!k;NyKU
右外连接(右连接):结果集既包括连接表的匹配连接行,也包括右连接表的所有行。51Testing软件测试网i9fW1t4P+zg9J
C:full outer join:51Testing软件测试网6P)~ W$bo8~:@A%d
全外连接:不仅包括符号连接表的匹配行,还包括两个连接表中的所有记录。
51Testing软件测试网0\ftB^9~hb

51Testing软件测试网x^*A-Zq7sCi#a o

其次,大家来看一些不错的sql语句
+T2z]4h!g3J01、说明:复制表(只复制结构,源表名:a 新表名:b) (Access可用)51Testing软件测试网-OV_'J{D y;O
法一:select * into b from a where 1<>1
jy D\B0法二:select top 0 * into b from a

y;l$\Uz0

/j7HQb:j r3h02、说明:拷贝表(拷贝数据,源表名:a 目标表名:b) (Access可用)
mVnJR5|U}0insert into b(a, b, c) select d,e,f from b;
51Testing软件测试网G Y)j"uY_!BY

51Testing软件测试网2A4xzE6O Ax^w1U

3、说明:跨数据库之间表的拷贝(具体数据使用绝对路径) (Access可用)
U7G+eOj,}S0insert into b(a, b, c) select d,e,f from b in ‘具体数据库’ where 条件
0e ZUZ Y0例子:..from b in '"&Server.MapPath(".")&"\data.mdb" &"' where..
51Testing软件测试网W n+izu]Y3Bh

51Testing软件测试网 ]V:u n8fJ7PT#Xm

4、说明:子查询(表名1:a 表名2:b)51Testing软件测试网CU^$p"^6|eK;k
select a,b,c from a where a IN (select d from b ) 或者: select a,b,c from a where a IN (1,2,3)

MH.f/d?R:c/SJW051Testing软件测试网8TmnJ8D

5、说明:显示文章、提交人和最后回复时间51Testing软件测试网W!A _ h6J'\;D
select a.title,a.username,b.adddate from table a,(select max(adddate) adddate from table where table.title=a.title) b

zV'h%q Ft051Testing软件测试网 [!?u4U:@'X${cDl@

6、说明:外连接查询(表名1:a 表名2:b)
9K7]j5@L q0select a.a, a.b, a.c, b.c, b.d, b.f from a LEFT OUT JOIN b ON a.a = b.c
51Testing软件测试网~@[XJy#tF

51Testing软件测试网9n%\D;Z.L _$?1n+P4q Qu

7、说明:在线视图查询(表名1:a )51Testing软件测试网,?c5iCDSPM6^ r k
select * from (SELECT a,b,c FROM a) T where t.a > 1;

\ q.Zu;J^D v0

r)u#R9tTc08、说明:between的用法,between限制查询数据范围时包括了边界值,not between不包括
lA6y ? ``0select * from table1 where time between time1 and time251Testing软件测试网+r(R+l\7v"dI!b~
select a,b,c, from table1 where a not between 数值1 and 数值2

5M"}F5Q%G~h@ S0

R^u+f:`+nD]BR09、说明:in 的使用方法51Testing软件测试网O*Q*T+CDW K7B c
select * from table1 where a [not] in (‘值1’,’值2’,’值4’,’值6’)

J&U0}tWMx^]051Testing软件测试网O}1}3R3to

10、说明:两张关联表,删除主表中已经在副表中没有的信息
}\$_}p6Uh0delete from table1 where not exists ( select * from table2 where table1.field1=table2.field1 )
51Testing软件测试网6W2[w5ME N|{

51Testing软件测试网Y9d0JXu7}

11、说明:四表联查问题:
+zx}+c"Y0select * from a left inner join b on a.a=b.b right inner join c on a.a=c.c inner join d on a.a=d.d where .....
51Testing软件测试网9fqMT+b

51Testing软件测试网{ K%}c!F Q

12、说明:日程安排提前五分钟提醒
H)q;|ot3Z0SQL: select * from 日程安排 where datediff('minute',f开始时间,getdate())>5
51Testing软件测试网.Mjj6Q#e(jeD

51Testing软件测试网+lF1F#| R Q(Gi

13、说明:一条sql 语句搞定数据库分页
L&AS9t|j0select top 10 b.* from (select top 20 主键字段,排序字段 from 表名 order by 排序字段 desc) a,表名 b where b.主键字段 = a.主键字段 order by a.排序字段
51Testing软件测试网GjP.ngy r{

51Testing软件测试网wi:p:g"X(h;g#U Kp%Z

14、说明:前10条记录
xxul&SV ?0select top 10 * form table1 where 范围
51Testing软件测试网*smz#O8f)T/E7X6Rt

aD]6et3p&t4K015、说明:选择在每一组b值相同的数据中对应的a最大的记录的所有信息(类似这样的用法可以用于论坛每月排行榜,每月热销产品分析,按科目成绩排名,等等.)51Testing软件测试网S.[.w5A7r _z
select a,b,c from tablename ta where a=(select max(a) from tablename tb where tb.b=ta.b)

&jA6w?~6iK051Testing软件测试网/mE#`z)c%[,i6U'w-i

16、说明:包括所有在 TableA 中但不在 TableB和TableC 中的行并消除所有重复行而派生出一个结果表51Testing软件测试网7f B(yA&q2o@pr{
(select a from tableA ) except (select a from tableB) except (select a from tableC)
51Testing软件测试网?|ybt!Ie ~6x

6e"DM!M:H/Y$WiSN017、说明:随机取出10条数据51Testing软件测试网|v`]k0F6M_+A@mb
select top 10 * from tablename order by newid()
51Testing软件测试网T"qt`+L:D4g$T,v ~7b

51Testing软件测试网7FE'M3Zn@F?"v

18、说明:随机选择记录
.Qc}%E;X*kU"z%P ^N0select newid()

[9NBfCGY051Testing软件测试网6{,]p8`h:p

19、说明:删除重复记录51Testing软件测试网7R7t0~.o.x`1d
Delete from tablename where id not in (select max(id) from tablename group by col1,col2,...)

NT.J~0um^Q4b/wk0

[5qX AM020、说明:列出数据库里所有的表名
IF Xx9W sG'\%e,Gg0select name from sysobjects where type='U'

Y+o@"iB,g0

0m%L_ EO;Q o021、说明:列出表里的所有的51Testing软件测试网:~ Q5D"m&J
select name from syscolumns where id=object_id('TableName')
51Testing软件测试网Pb,X'Jy9d

51Testing软件测试网,q Jk5U5h R

22、说明:列示type、vender、pcs字段,以type字段排列,case可以方便地实现多重选择,类似select 中的case。
\&zNJ,Z2T%m0select type,sum(case vender when 'A' then pcs else 0 end),sum(case vender when 'C' then pcs else 0 end),sum(case vender when 'B' then pcs else 0 end) FROM tablename group by type51Testing软件测试网$|,uc%EC%f3z |WcO
显示结果:51Testing软件测试网D%\ A,WbJaM
type vender pcs51Testing软件测试网5LC ^qM,G
电脑 A 151Testing软件测试网(Q!Mkc:qU
电脑 A 1
HM0_ Ij0光盘 B 251Testing软件测试网 TiUSf#?,z
光盘 A 2
6Y|#e\.H}+A0手机 B 351Testing软件测试网t?)l `+oq
手机 C 3

9b dgZ?I*_051Testing软件测试网)Xnn2L9M0i

23、说明:初始化表table151Testing软件测试网&P"lA;Q!b C
TRUNCATE TABLE table1

"`(Li8Dh9vzU:S s0

6s.i]{Hy*K024、说明:选择从10到15的记录
.Hj%\p+_I0select top 5 * from (select top 15 * from table order by id asc) table_别名 order by id desc
(U$G ]9a7{.s W@-T!|0  51Testing软件测试网[f2E |S!| |v)Ns
随机选择数据库记录的方法(使用Randomize函数,通过SQL语句实现)
s2yyi,m9s,W Z0  对存储在数据库中的数据来说,随机数特性能给出上面的效果,但它们可能太慢了些。你不能要求ASP“找个随机数”然后打印出来。实际上常见的解决方案是建立如下所示的循环:51Testing软件测试网Ou^b ]
Randomize51Testing软件测试网y.d._?Z7A8K9YW/b
RNumber = Int(Rnd*499) +1
a.P0k.W1G+S"{Gt+H0 51Testing软件测试网wUe;X2dqo!R&{
While Not objRec.EOF51Testing软件测试网/l UY]-V;ELG!i%H
If objRec("ID") = RNumber THEN
KoR:P7e0... 这里是执行脚本 ...
)e{}5K1x9n0Nd0end if
6BfX` e0objRec.MoveNext
Oq"ap,jp{6~0Wend
[%]5V H-O(^R0 51Testing软件测试网u5Z} e"N
  这很容易理解。首先,你取出1到500范围之内的一个随机数(假设500就是数据库内记录的总数)。然后,你遍历每一记录来测试ID 的值、检查其是否匹配RNumber。满足条件的话就执行由THEN 关键字开始的那一块代码。假如你的RNumber 等于495,那么要循环一遍数据库花的时间可就长了。虽然500这个数字看起来大了些,但相比更为稳固的企业解决方案这还是个小型数据库了,后者通常在一个数据库内就包含了成千上万条记录。这时候不就死定了?51Testing软件测试网2hXeQB%E
  采用SQL,你就可以很快地找出准确的记录并且打开一个只包含该记录的recordset,如下所示:51Testing软件测试网 P&JLr/g6Pub
Randomize
l2eG6YA S)a0Xe4^0RNumber = Int(Rnd*499) + 151Testing软件测试网)D*k(U#VH
 51Testing软件测试网Ph9H&t8v6j8p+Y
SQL = "SELECT * FROM Customers WHERE ID = " & RNumber
k%y Fo6g~[jK0 51Testing软件测试网p9e4`-r8Jq{ B+[c
set ōbjRec = ObjConn.Execute(SQL)
;fE&I;~7a0Response.WriteRNumber & " = " & objRec("ID") & " " & objRec("c_email")
5ce9mWO1w jE-Op0 51Testing软件测试网:y*`R2`:K
  不必写出RNumber 和ID,你只需要检查匹配情况即可。只要你对以上代码的工作满意,你自可按需操作“随机”记录。Recordset没有包含其他内容,因此你很快就能找到你需要的记录这样就大大降低了处理时间。51Testing软件测试网1M1As{[Q:B
再谈随机数51Testing软件测试网:GA ?Y%_\5oZR~ wC
  现在你下定决心要榨干Random 函数的最后一滴油,那么你可能会一次取出多条随机记录或者想采用一定随机范围内的记录。把上面的标准Random 示例扩展一下就可以用SQL应对上面两种情况了。
b rTyM:qd F2A0  为了取出几条随机选择的记录并存放在同一recordset内,你可以存储三个随机数,然后查询数据库获得匹配这些数字的记录:
w*B#xg-Xa,Av$S0w0SQL = "SELECT * FROM Customers WHERE ID = " & RNumber & " OR ID = " & RNumber2 & " OR ID = " & RNumber3
N4Q4_ r1b0 51Testing软件测试网gIbr_r4q7Ym-n
  假如你想选出10条记录(也许是每次页面装载时的10条链接的列表),你可以用BETWEEN 或者数学等式选出第一条记录和适当数量的递增记录。这一操作可以通过好几种方式来完成,但是 SELECT 语句只显示一种可能(这里的ID 是自动生成的号码):51Testing软件测试网I n3~8jy6A
SQL = "SELECT * FROM Customers WHERE ID BETWEEN " & RNumber & " AND " & RNumber & "+ 9"

m3?9i#HryF051Testing软件测试网bI0\)i/DP A.?E5i

  注意:以上代码的执行目的不是检查数据库内是否有9条并发记录。51Testing软件测试网cwR9?,?$t-rG

51Testing软件测试网+[*{X*zY)A%x`4\

 51Testing软件测试网G x?b-d f
随机读取若干条记录,测试51Testing软件测试网E@d%jph
Access语法:SELECT top 10 * From 表名 ORDER BY Rnd(id)
5o8o'L7fV;g"^X0Sql server:select top n * from 表名 order by newid()51Testing软件测试网V3O2u!U]f0h
mysql:select * From 表名 Order By rand() Limit n51Testing软件测试网 fE)SB9Z'E
Access左连接语法(最近开发要用左连接,Access帮助什么都没有,网上没有Access的SQL说明,只有自己测试, 现在记下以备后查)
g%K1s@,Zz0语法:select table1.fd1,table1,fd2,table2.fd2 From table1 left join table2 on table1.fd1,table2.fd1 where ...51Testing软件测试网:J0r V"` ^Pv.M
使用SQL语句 用...代替过长的字符串显示
O+g @kV.W*M0语法:51Testing软件测试网'Rxi P1G2\!BS
SQL数据库:select case when len(field)>10 then left(field,10)+'...' else field end as news_name,news_id from tablename51Testing软件测试网Z/G Kj:q {+I
Access数据库:SELECT iif(len(field)>2,left(field,2)+'...',field) FROM tablename;51Testing软件测试网_{h9Z,TiJ
 
-xb}jP/}0Conn.Execute说明
(u9T!lQg y){j_0{0Execute方法51Testing软件测试网-hgC-\/B
  该方法用于执行SQL语句。根据SQL语句执行后是否返回记录集,该方法的使用格式分为以下两种:51Testing软件测试网(Tuswg7Lg
    1.执行SQL查询语句时,将返回查询得到的记录集。用法为:
X-A$O`g-g0    Set 对象变量名=连接对象.Execute("SQL 查询语言")
]&K/_/b| i5V0   Execute方法调用后,会自动创建记录集对象,并将查询结果存储在该记录对象中,通过Set方法,将记录集赋给指定的对象保存,以后对象变量就代表了该记录集对象。

2N%`Q*{o051Testing软件测试网_m QZ1R s

    2.执行SQL的操作性语言时,没有记录集的返回。此时用法为:
n,^)o h'~Q+a0    连接对象.Execute "SQL 操作性语句" [, RecordAffected][, Option]51Testing软件测试网5R+EFjbz
      ·RecordAffected 为可选项,此出可放置一个变量,SQL语句执行后,所生效的记录数会自动保存到该变量中。通过访问该变量,就可知道SQL语句队多少条记录进行了操作。
^cp/|/cG1C+V%[6F,]0      ·Option 可选项,该参数的取值通常为adCMDText,它用于告诉ADO,应该将Execute方法之后的第一个字符解释为命令文本。通过指定该参数,可使执行更高效。
51Testing软件测试网 vh:T(gH@;fY{'_

51Testing软件测试网@$U"gjx/T)C

·BeginTrans、RollbackTrans、CommitTrans方法51Testing软件测试网1tyJ Bj z$@ r0S0{x
  这三个方法是连接对象提供的用于事务处理的方法。BeginTrans用于开始一个事物;RollbackTrans用于回滚事务;CommitTrans用于提交所有的事务处理结果,即确认事务的处理。51Testing软件测试网#^#N R'VLW\ ^
  事务处理可以将一组操作视为一个整体,只有全部语句都成功执行后,事务处理才算成功;若其中有一个语句执行失败,则整个处理就算失败,并恢复到处里前的状态。
%U;W2\Sz0  BeginTrans和CommitTrans用于标记事务的开始和结束,在这两个之间的语句,就是作为事务处理的语句。判断事务处理是否成功,可通过连接对象的Error集合来实现,若Error集合的成员个数不为0,则说明有错误发生,事务处理失败。Error集合中的每一个Error对象,代表一个错误信息。
51Testing软件测试网G(_y'_~I


TAG: 测试技术

测试初长成 引用 删除 投缘   /   2008-10-06 14:17:40
有用!!
 

评分:0

我来说两句

日历

« 2024-05-07  
   1234
567891011
12131415161718
19202122232425
262728293031 

数据统计

  • 访问量: 21188
  • 日志数: 48
  • 文件数: 2
  • 书签数: 7
  • 建立时间: 2008-09-13
  • 更新时间: 2009-05-06

RSS订阅

Open Toolbar