TSYS资源特性的效率提高方法
程序员文章站
2023-11-27 13:46:04
http://www.tsov.net/blog/article.asp?id=416tsys资源特性的以字符型存储的,所以在更新文件的判断比较麻烦,直接把类型改成数值型,...
http://www.tsov.net/blog/article.asp?id=416
tsys资源特性的以字符型存储的,所以在更新文件的判断比较麻烦,直接把类型改成数值型,方便,效率也有提高。
如:
原来的方法:
sql="select top 5 title,filepath,smallimg,shortcontent,addtime from view_newsinfo where class=61 and instr(','+speciality+',',',29,')<>0 order by id desc"
修改后数据库中的speciality的型号为数值型,默认值为0,,后,
sql="select top 5 title,filepath,smallimg,shortcontent,addtime from view_newsinfo where class=61 and speciality=29 order by id desc"
同时,
.... where class=61 and speciality=29....
与
.... where speciality=29 and class=61....
的执行效率也不同,
前者从大类中查询,然后再查询特性,后者是查询所有的内容特性后,再查询分类。
前者的效率高于后者。
另:
2006-8-7日补充:
再修改文件news_mdy.asp的行120中的
' speciality=replace(request("speciality")," ","") 这是原来的
speciality=request("speciality")
tsys资源特性的以字符型存储的,所以在更新文件的判断比较麻烦,直接把类型改成数值型,方便,效率也有提高。
如:
原来的方法:
sql="select top 5 title,filepath,smallimg,shortcontent,addtime from view_newsinfo where class=61 and instr(','+speciality+',',',29,')<>0 order by id desc"
修改后数据库中的speciality的型号为数值型,默认值为0,,后,
sql="select top 5 title,filepath,smallimg,shortcontent,addtime from view_newsinfo where class=61 and speciality=29 order by id desc"
同时,
.... where class=61 and speciality=29....
与
.... where speciality=29 and class=61....
的执行效率也不同,
前者从大类中查询,然后再查询特性,后者是查询所有的内容特性后,再查询分类。
前者的效率高于后者。
另:
2006-8-7日补充:
再修改文件news_mdy.asp的行120中的
' speciality=replace(request("speciality")," ","") 这是原来的
speciality=request("speciality")
上一篇: 如何回到先前的页面的方法多中语言 原创
下一篇: asp复制文件夹代码