如何查询2011-1-1 9:30到10:00 至2011-5-7 9:30到10:00 之间的数据,怎么写SQL
答案:3 悬赏:70 手机版
解决时间 2021-03-16 07:03
- 提问者网友:無理詩人
- 2021-03-15 17:15
如何查询2011-1-1 9:30到10:00 至2011-5-7 9:30到10:00 之间的数据,怎么写SQL
最佳答案
- 五星知识达人网友:長槍戰八方
- 2021-03-15 18:14
我猜你是这个意思
select ... from ....
where datetime between to_date('2011-01-01 09:30:00','yyyy-mm-dd hh24:mi:ss') and to_date('2011-01-01 10:00:00','yyyy-mm-dd hh24:mi:ss')
or
datetime between to_date('2011-05-07 09:30:00','yyyy-mm-dd hh24:mi:ss') and to_date('2011-05-07 10:00:00','yyyy-mm-dd hh24:mi:ss')
select ... from ....
where datetime between to_date('2011-01-01 09:30:00','yyyy-mm-dd hh24:mi:ss') and to_date('2011-01-01 10:00:00','yyyy-mm-dd hh24:mi:ss')
or
datetime between to_date('2011-05-07 09:30:00','yyyy-mm-dd hh24:mi:ss') and to_date('2011-05-07 10:00:00','yyyy-mm-dd hh24:mi:ss')
全部回答
- 1楼网友:话散在刀尖上
- 2021-03-15 19:25
declare @i int
set @i=1
while @i<=10
begin
print @i
set @i=@i+1
end
是这样不
- 2楼网友:轮獄道
- 2021-03-15 18:58
sql server
假设 字段为‘时间’
where ((datepart(hh,时间) = 9
and datepart(mi,时间) >= 30
and datepart(mi,时间) <=59)
or (datepart(hh,时间) = 10 and datepart(mi,时间)=0))
and 时间 >='2011-1-1 9:30'
and 时间 <='2011-5-7 10:00'
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯