ASP多条件查询

<!--#includefile="conn.asp"--><%ifrequest.querystring("act")="cha"Thenexec="select*fr... <!--#include file="conn.asp" -->
<%
if request.querystring("act")="cha" Then
exec="select * from juanban where 材质 like '"&request.form("caizhi")&"' or 规格 like '"&request.form("guige")&"' or 产地 like '"&request.form("chandi")&"' or 货源 like '"&request.form("huoyuan")&"'"
else
exec="select * from juanban where 1=1"
end if
set rs2=server.createobject("adodb.recordset")
rs2.open exec,conn,1,1
do while not rs2.eof %>
如图
要求某个条件为空时不影响其他的,可以单条件搜索,也可以多条件搜索,上面这段代码怎么改?
展开
 我来答
匿名用户
推荐于2016-02-13
展开全部
asp多条件符合查询,参考代码如下:
<%
dim qy
qy=0
if request.form("stu_name")<>"" then '第一个条件表单传递的数据
str="stu_name='"&request.form("stu_name")&"'"
qy=qy+1
end if

if request.form("stu_num")<>"" then '第二个条件表单传递的数据
if qy=0 then
str=str&"stu_number='"&request.form("stu_num")&"'"
else
str=str&"and stu_number='"&request.form("stu_num")&"'"
end if
qy=qy+1
end if

if request.form("stu_xibie")<>"" then '第三个条件表单传递的数据
if qy=0 then
str=str&"stu_xibie='"&request.form("stu_xibie")&"'"
else
str=str&"and stu_xibie='"&request.form("stu_xibie")&"'"
end if
qy=qy+1
end if

if request.form("stu_class")<>"" then
if qy=0 then
str=str&"stu_class='"&request.form("stu_class")&"'"
else
str=str&"and stu_class='"&request.form("stu_class")&"'"
end if
qy=qy+1
end if

if request.form("stu_year")<>"" then
if qy=0 then
str=str&"stu_year='"&request.form("stu_year")&"'"
else
str=str&"and stu_year='"&request.form("stu_year")&"'"
end if
qy=qy+1
end if
sql="select * from [students] where "&str
Set rs=Conn.Execute(sql) '执行sql语句
%>
松原百世木门
2011-10-21
知道答主
回答量:6
采纳率:0%
帮助的人:9万
展开全部
代码我就不写啦,给你思路,自己想出来的会一直记得,别人代码看一遍过几天就会忘记。

首先接收request传递参数,分开接收,在判断接收的后赋值的变量是否为空,

例如:

接收a=request.form(“a”)
b=request.form(“b”)
判断if a=“”and b<>"" then
执行条件查询(这里只需要查询a)
以此类推
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
干好每一天
推荐于2016-09-01 · 超过78用户采纳过TA的回答
知道答主
回答量:209
采纳率:0%
帮助的人:188万
展开全部
<%
if request.querystring("act")="cha" Then
caizhi=request("caizhi")
guige=request("guige")
chandi=request("chandi")
huoyuan=request("huoyuan")
if caizhi="" and guige="" and chandi="" and huoyuan="" then
exec="select * from juanban where 1=1"
else
exec="select * from juanban where 材质 like '"&caizhi&"' or 规格 like '"&guige&"' or 产地 like '"&chandi&"' or 货源 like '"&huoyuan&"'"
end if
end if
set rs2=server.createobject("adodb.recordset")
rs2.open exec,conn,1,1
do while not rs2.eof %>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式