设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 43|回复: 1
打印 上一主题 下一主题

多条件查询如何排序?

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-14 03:41:40 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
如题。我想实现多条件查询,可以选择一个或多个条件查询,如果不选的话就默认为查询所有记录!现在功能是实现了,可是我想倒序排列,请问如何实现?以下是源代码:
<%
a=request.form("birthday")
b=request.form("birthday1")
c=request.form("设备")
d=request.form("info")
e=request.form("reason")
f=request.form("maintain")
g=request.form("solution")
h=request.form("customer")

Set rs = Server.CreateObject ("ADODB.Recordset")
sql="Select * from data where 1=1"
if a<>"" and b="" then
sql=sql&" and 开始日期='"&a&"'"
elseif a<>"" and b<>"" then
sql=sql&" and 开始日期 between '"&a&"' and '"&b&"'"
elseif a="" and b="" then
sql=sql
elseif a="" and b<>"" then
sql=sql&" and 开始日期='"&b&"'"
end if
if c<>"请选择" then
sql=sql&" and 设备='"&c&"'"
end if
if d<>"请选择" then
sql=sql&" and 主要告警信息='"&d&"'"
end if
if e<>"" then
sql=sql&" and 故障原因 like '%"&e&"%'"
end if
if f<>"" then
sql=sql&" and 维护区='"&f&"'"
end if
if g<>"" then
sql=sql&" and 处理人='"&g&"'"
end if
if h<>"" then
sql=sql&" and 客户名称='"&h&"'"
end if
rs.Open sql,conn,1,3
%>
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-20 01:49 , Processed in 0.113490 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表