- 论坛徽章:
- 0
|
回复 #3 kanfu 的帖子
继续更新条件测试:
SQL4:
select convert(varchar(20),getdate(),109)
SELECT count(*) FROM Item1 i1, Item2 i2
WHERE i1.code1 = i2.code1 and i1.code2 = i2.code2 and i1.code3 = i2.code3 and i1.code2 < '301'
select convert(varchar(20),getdate(),109)
go
SQL5:
select convert(varchar(20),getdate(),109)
SELECT count(*) FROM Item1 i1, Item2 i2
WHERE i1.code1 = i2.code1 and i1.code2 = i2.code2 and i1.code3 = i2.code3 and i1.code2 >= '301'
select convert(varchar(20),getdate(),109)
go
SQL6:
select convert(varchar(20),getdate(),109)
SELECT count(*) FROM Item1 i1, Item2 i2
WHERE i1.code1 = i2.code1 and i1.code2 = i2.code2 and i1.code3 = i2.code3 and i1.code2 > '102'
select convert(varchar(20),getdate(),109)
go
SQL7:
select convert(varchar(20),getdate(),109)
SELECT count(*) FROM Item1 i1, Item2 i2
WHERE i1.code1 = i2.code1 and i1.code2 = i2.code2 and i1.code3 = i2.code3 and i1.code2 <= '102'
select convert(varchar(20),getdate(),109)
go
结果集:
第4个SQL的执行结果为:
Feb 4 2008 4:19:54
65309
Feb 4 2008 4:23:20
第5个SQL的执行结果为:
Feb 4 2008 4:23:20
5832
Feb 4 2008 4:23:20
第6个SQL的执行结果为:
Feb 4 2008 4:30:26
59387
Feb 4 2008 4:30:27
第7个SQL的执行结果为:
Feb 4 2008 4:32:11
11754
Feb 4 2008 4:32:17
结果分析,用大于的查询速度明显要用小于的查询速度快,Sybase的优化出了什么问题? |
|