ASP 多个查询条件 编码问题
系统有多个查询条件bh=Request.Form("bianhao")'讲座编号th=Request.Form("teacher")'主讲人ky=Request.Form...
系统有多个查询条件
bh = Request.Form("bianhao")'讲座编号
th = Request.Form("teacher")'主讲人
ky = Request.Form("keyword")'摘要关键字
ob = Request.Form("object") '讲座对象
ad = Request.Form("address")'地址
tm = Request.Form("time") '日期 格式为2009年4月3日
lm = Request.Form("limit") '人数限制
先要判断是否为空,然后开始查询,数据库中的都是文本格式
如果只有两个查询条件的我会
一多我就搞不清了,有没有高手帮忙啊
为什么我按照fkdcm这样做出来查询的是所有的数据 展开
bh = Request.Form("bianhao")'讲座编号
th = Request.Form("teacher")'主讲人
ky = Request.Form("keyword")'摘要关键字
ob = Request.Form("object") '讲座对象
ad = Request.Form("address")'地址
tm = Request.Form("time") '日期 格式为2009年4月3日
lm = Request.Form("limit") '人数限制
先要判断是否为空,然后开始查询,数据库中的都是文本格式
如果只有两个查询条件的我会
一多我就搞不清了,有没有高手帮忙啊
为什么我按照fkdcm这样做出来查询的是所有的数据 展开
2个回答
展开全部
跟两个一样的了,这样做吧
bh = Request.Form("bianhao")'讲座编号
th = Request.Form("teacher")'主讲人
ky = Request.Form("keyword")'摘要关键字
ob = Request.Form("object") '讲座对象
ad = Request.Form("address")'地址
tm = Request.Form("time") '日期 格式为2009年4月3日
lm = Request.Form("limit") '人数限制
sql="select * from lesson where 1=1"
if bh<>"" then
sql=sql&" and bh="&bh&""
end if
if th<>"" then
sql=sql&" and th="&th&""
end if
..........
..........
..........
if lm<>"" then
sql=sql&" and lm="&lm&""
end if
sql=sql&"order by id desc"
这样每个判断之后都连起来and查询,就是你要的结果了
bh = Request.Form("bianhao")'讲座编号
th = Request.Form("teacher")'主讲人
ky = Request.Form("keyword")'摘要关键字
ob = Request.Form("object") '讲座对象
ad = Request.Form("address")'地址
tm = Request.Form("time") '日期 格式为2009年4月3日
lm = Request.Form("limit") '人数限制
sql="select * from lesson where 1=1"
if bh<>"" then
sql=sql&" and bh="&bh&""
end if
if th<>"" then
sql=sql&" and th="&th&""
end if
..........
..........
..........
if lm<>"" then
sql=sql&" and lm="&lm&""
end if
sql=sql&"order by id desc"
这样每个判断之后都连起来and查询,就是你要的结果了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询