求帮忙,asp 多条件组合查询如何实现?分不够可以加!
要实现这一的筛选要如何实现呢!多种查询条件比如我选择了广东的。就查询出符合广东的。然后我再选择主题分类为海边的。这这一就查询符合广东又是海边的结果。请问如何实现!...
要实现这一的筛选要如何实现呢!多种查询条件比如我选择了广东的。就查询出符合广东的。然后我再选择主题分类为海边的。这这一就查询符合广东 又是海边的结果。请问如何实现!
展开
2个回答
展开全部
<%
strsql="selec * from 表名 where 1=1"
if 所在省份<>"" then
strsql=strsql&" and 所在省份="&所在省份
end if
if 所在城市<>"" then
strsql=strsql&" and 所在城市="&所在城市
end if
if 所在地区<>"" then
strsql=strsql&" and 所在地区="&所在地区
end if
if 主题分类<>"" then
strsql=strsql&" and 主题分类="&主题分类
end if
if 门票价格<>"" then
if 门票价格="<100" then strsql=strsql&" and 门票价格<100"
if 门票价格="100-200" then strsql=strsql&" and 门票价格>=100 and 门票价格<200 "
if 门票价格="200-300" then strsql=strsql&" and 门票价格>=200 and 门票价格<300 "
if 门票价格="300-400" then strsql=strsql&" and 门票价格>=300 and 门票价格<400 "
if 门票价格=">400" then strsql=strsql&" and 门票价格>=400"
end if
if 景区级别<>"" then
strsql=strsql&" and 景区级别="&景区级别
end if
rs.open strsql,conn,1,1
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询