|
例:数据库时间字段 data1 data2 (时间类型:datetime)
外部查询:
dim a,b '两个变量
a=1:20:00
b=5:30:00
keywords=request("keywords")
set rs=server.createobject("adodb.recordset")
sql="select * from car where name like '%"&keywords&"%'"
if a<>"" then
sql=sql&" and datediff('s',data1,'"&a&"') >=0"
end if
if b<>"" then
sql=sql&" and datediff('s',data2,'"&b&"') >=0"
end if
sql=sql&" order by id desc"
rs.open sql,conn,1,1 |
|