什么是二次消防验收:jsp如何按日期搜索信息

来源:百度文库 编辑:神马品牌网 时间:2024/05/02 19:06:44
jsp如何按日期搜索信息,比如我想查看今天的或昨天的、前天的信息
我写了一个可是要是查询的时候如果选择今天的或是昨天的它都会全部显示,这是怎么回事?
<%
String strKeyWord=request.getParameter("sKeyWords");
String sDate=request.getParameter("sDate");
String strDate="";
if(strDate==null || strDate.equals(""))
{
strDate="2006-4-5";
}
if(sDate.equals("0"))
{
strDate="2006-4-5";
}
if(sDate.equals("1"))
{
strDate="2006-4-4";
}
if(sDate.equals("2"))
{
strDate="2006-4-3";
}
String sql="select * from car ";
if(strKeyWord!=null)
{
if(!sDate.equals("3"))
sql+=" where title like '%"+strKeyWord+"%' or content like '%"+strKeyWord+"%' or sDate = '"+strDate+"' ";
else
sql+=" where title like '%"+strKeyWord+"%' or content like '%"+strKeyWord+"%' ";
}
else
{
}
sql+=" order by id desc";
ResultSet rs=db.executeQuery(sql);
%>