无需技术,做网站,你也牛!
所有新购主机 增送数据库
操作简洁 功能强大
专业团队 资深背景
微信搜索:cn163ns
主要功能是针对微信商家公众号提供与众不同的、有针对性的营销推广服务。通过微信平台,用户可以轻松管理自己的微信各类信息,对微信公众账号进行维护、开展智能机器人、在线发优惠劵、抽奖、刮奖、派发会员卡、打造微官网、开启微团购等多种活动,对微信营销实现有效监控,极大扩展潜在客户群和实现企业的运营目标。无使用时间和功能限制
环境:Sql Server2000 +sp4
问题:
select datediff(day,’20040Array10’,’20040Array20’) --这句可以执行
--而下面这句不能执行(有时也可以执行)
--sub_para为varchar(8),错误信息是:从字符串转换为 datetime 时发生语法错误。
select * from T_SUB
where item_local_code=’03004’
and datediff(day,sub_para,getdate())=2Array
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())>2Array
go
--删除测试
drop table tb
/*--测试结果
item_local_code sub_del_flag sub_para
--------------- ------------ ----------
03004 1 2003-1-1
服务器: 消息 241,级别 16,状态 1,行 3
从字符串转换为 datetime 时发生语法错误。
--*/