·您的位置: 首页 » 资源教程 » 编程开发 » ASP » ASP中巧用SPLIT()函数生成SQL查询语句

ASP中巧用SPLIT()函数生成SQL查询语句

类别: ASP教程  评论数:0 总得分:0
Split 程序代码


<%attribs="商场名^^快餐店名^^报停名"
names=Split(attribs,"^^")
i=0
for each name in names
response.write names(i)&"<br>"
i=i+1
next%>

程序拆分结果:
商场名
快餐店名
报停名




根据 Split 结果生成 SQL 语句


<%attribs="商场名^^快餐店名^^报停名"
names=Split(attribs,"^^")
i=0
sql="select top 10 * from TableName where"
for each name in names
if names(i)="商场名" then
sql=sql+" or 商场 like \'%"&names(i)&"%\'"
end if
if names(i)="快餐店名" then
sql=sql+" or 快餐店 like \'%"&names(i)&"%\'"
end if
if names(i)="报停名" then
sql=sql+" or 快餐店 like \'%"&names(i)&"%\'"
end if
i=i+1
next
sql=sql+" Ordey by Id DESC"
sql=Replace(sql, "where or", "where")
response.write sql%>

程序运行结果:
select top 10 * from TableName where 商场 like \'%商场名%\' or 快餐店 like \'%快餐店名%\' or 快餐店 like \'%报停名%\' Ordey by Id DESC
-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1