这是查询与当前时间在同一周内的数据,sql语句是:
select * from 表 where datediff(week,时间字段,getdate())=0
也可以稍作修改用来查询与指定日期在同一周内的数据:
select * from 表 where datediff(week,时间字段,'2002-01-01')=0
像你的这个表,查询一段时间(需要指定前后日期的)
select * from 表 where startdate between 指定日期 and 指定日期
select * from 表 where leavedate between 指定日期 and 指定日期
查询一段时间( 不需要固定时间的,只需要前后间隔时间的)
select * from 表 where datediff(day,startdate,leavedate)<7 and startdate = 指定日期select * from 表 where datediff(day,startdate,leavedate)<7 and leavedate = 指定日期
这是查询此日期开始时间到离开时间在七天之间的所有数据,后面的and部分按需要加。
追问<% Connection con;
Statement sql;
ResultSet rs;
String strId=request.getParameter("id");
String strStartTime=request.getParameter("startTime");
String strLeaveTime=request.getParameter("leaveTime");
if(strId==null){
strId="";
}
if(strStartTime==null){
strStartTime="";
}
if(strLeaveTime==null){
strLeaveTime="";
}
追答你要问的是什么问题?是你的代码出什么问题了吗?还是你的查询语句不行?