欢迎光临
我们一直在努力

索引对查询条件顺序的影响-数据库专栏,SQL Server

建站超值云服务器,限时71元/月

原帖地址:
http://community.csdn.net/expert/faq/faq_manage.asp?id=0&topicid=3390663

环境:sql server2000 +sp4

问题:
select datediff(day,20040910,20040920)  –这句可以执行

–而下面这句不能执行(有时也可以执行)
–sub_para为varchar(8),错误信息是:从字符串转换为 datetime 时发生语法错误。
select * from t_sub
where item_local_code=03004
 and  datediff(day,sub_para,getdate())=29
 and (sub_del_flag<>1)

–而且不能执行的时候,这个语句不会返回任何记录集
select * from t_sub
where  item_local_code=03004
 and isdate(sub_para)=0

————————————————————————-
–原因,表中创建的索引影响了条件的执行顺序
–导致先执行了 datediff(day,sub_para,getdate())

–下面的测试说明了这个问题
–测试表及数据
create table tb(
item_local_code char(5),
sub_del_flag int,
sub_para varchar(10),
constraint pk_t primary key(sub_para,item_local_code)
)
insert tb select 03004,1,2003-1-1
union all select 03005,1,2003a1-1
go

–查询语句
select * from (
 select * from tb
 where item_local_code=03004
  and sub_del_flag<>0
  and isdate(sub_para)=1
) a where datediff(day,sub_para,getdate())>29
go

–删除测试
drop table tb

/*–测试结果

item_local_code sub_del_flag sub_para  
————— ———— ———-
03004           1            2003-1-1

服务器: 消息 241,级别 16,状态 1,行 3
从字符串转换为 datetime 时发生语法错误。

–*/

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 索引对查询条件顺序的影响-数据库专栏,SQL Server
分享到: 更多 (0)