如何从sql server数据库中查询datetime类型的数据?详细些!!! 5

我想查询出表中的一段时间内的数据按时间查询时间的数据类型为datetime求各位大虾指点!!!... 我想查询出表中的一段时间内的数据 按时间查询 时间的数据类型为datetime
求各位大虾指点!!!
展开
 我来答
xu3180497
2012-06-18 · TA获得超过1659个赞
知道小有建树答主
回答量:390
采纳率:66%
帮助的人:189万
展开全部
这是查询与当前时间在同一周内的数据,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="";
}
追答
你要问的是什么问题?是你的代码出什么问题了吗?还是你的查询语句不行?
xielq39
推荐于2018-03-20
知道答主
回答量:1
采纳率:100%
帮助的人:1483
展开全部
select * from 表名 where 字段名 between '2012-6-7' and '2012-6-27'
比如查询7号到27号的数据,注意是引号。表名你自己知道,字段名在这张表里是startTime或LeaveTime
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
讨喜啊c
2020-06-02
知道答主
回答量:2
采纳率:0%
帮助的人:1173
展开全部
where CAST(时间字段 as date)=xxx
或者
where CAST(时间字段 as date) between '2020-05-01'and'2020-06-01'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式