5个回答
2011-02-24
展开全部
select * from table
where datetime>' 2011-02-24' and datetime < '2011-02-25'
order by datetime
取出来的就是24号当天的所有数据。
where datetime>' 2011-02-24' and datetime < '2011-02-25'
order by datetime
取出来的就是24号当天的所有数据。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
标准语法 使用between and
select *
from tb
where DTIME BETWEEN 时间起始点 and 时间结束点
order by DTIME;
select *
from tb
where DTIME BETWEEN 时间起始点 and 时间结束点
order by DTIME;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from table
where datetime > cast('2011-02-24 00:00:00'as datetime)
and datetime < cast('2011-02-25 00:00:00'as datetime)
where datetime > cast('2011-02-24 00:00:00'as datetime)
and datetime < cast('2011-02-25 00:00:00'as datetime)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from [表名] where DTIME between [时间1] AND [时间2] ORDER BY DTIME
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询