asp accesss instr函数 转sql 50
dimMyself,PATH_INFO,QUERY_STRING'本页地址和参数PATH_INFO=request.servervariables("PATH_INFO"...
dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
PATH_INFO = request.servervariables("PATH_INFO")
QUERY_STRING = request.ServerVariables("QUERY_STRING")'
if QUERY_STRING = "" then
Myself = PATH_INFO & "?"
elseif Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
Myself= PATH_INFO & "?" & QUERY_STRING & "&"
else
Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
end if
dim datawhere'数据条件
if SortPath<>"" then'是否查看的分类产品
datawhere="where ViewFlag=1 and instr(SortPath,'"&SortPath&"')>0 "
这段应该如何改将instr函数改成sql2000可用函数 ,请高手指点,小弟初学 展开
PATH_INFO = request.servervariables("PATH_INFO")
QUERY_STRING = request.ServerVariables("QUERY_STRING")'
if QUERY_STRING = "" then
Myself = PATH_INFO & "?"
elseif Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
Myself= PATH_INFO & "?" & QUERY_STRING & "&"
else
Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
end if
dim datawhere'数据条件
if SortPath<>"" then'是否查看的分类产品
datawhere="where ViewFlag=1 and instr(SortPath,'"&SortPath&"')>0 "
这段应该如何改将instr函数改成sql2000可用函数 ,请高手指点,小弟初学 展开
1个回答
展开全部
instr在Access数据库中可用,到了SQL就不可用了;
但是SQL有一个函数很它作用等同的,它就是charindex函数,具体用法:
http://baike.baidu.com/view/1030958.htm
语句的用法有一些不同点:2个参数前后位置变换一下就OK
instr函数
datawhere="where ViewFlag=1 and instr(SortPath,'"&SortPath&"')>0 "
charindex函数
datawhere="where ViewFlag=1 and charindex('"&SortPath&"',SortPath)>0 "
但是SQL有一个函数很它作用等同的,它就是charindex函数,具体用法:
http://baike.baidu.com/view/1030958.htm
语句的用法有一些不同点:2个参数前后位置变换一下就OK
instr函数
datawhere="where ViewFlag=1 and instr(SortPath,'"&SortPath&"')>0 "
charindex函数
datawhere="where ViewFlag=1 and charindex('"&SortPath&"',SortPath)>0 "
参考资料: http://baike.baidu.com/view/1030958.htm
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询