过滤时间值,它是指定时间任一侧的设定时间段

时间:2015-04-20 08:57:23

标签: sql sql-server function datediff date-difference

给定指定的时间值和间隔值:

Specified Time: 13:25:00
Interval Value: 00:20:00

如何过滤下面的值表,以返回指定时间指定时间间隔的时间。

12:45:24
13:05:00
13:50:30
14:50:32
15:15:10

我想要一个函数或查询来检查'13:25:00'与表中的任何时间是否有'00:20:00'的差异。

输出应返回:

13:05:00

3 个答案:

答案 0 :(得分:1)

如果我们正确理解您的问题,您希望所有时间都超过您给定(特殊)时间的20分钟。

要实现这一点,只需使用包含如下所示子句的where子句进行选择:abs(datediff(minute, tableDate, @specialdate)) > 20

SQLFiddle sample和代码示例:

declare @specialDate datetime = '1900-01-01 13:25:00'

select *
  from SampleData
 where abs(datediff(minute, SomeDate, @specialDate)) > 20

请注意,我将日期时间列的日期设置为1900-01-01作为模糊参考,并根据您的设置进行调整。

您需要行中的ABS以确保检查结果datediff的两个变体(它可以带回0,> 0或<0)

参考文献:
MSDN: DATEDIFF
MSDN: ABS

答案 1 :(得分:1)

根据您提供的信息,我假设您希望从“特殊时间”任一侧的指定时间段中获取列表中的值。

以下是使用DATEADD执行此操作的一种方法:

-- temp table for your sample data
CREATE TABLE #times ( val TIME )

INSERT  INTO #times
        ( val )
VALUES  ( '12:45:24' ),
        ( '13:05:00' ),
        ( '13:50:30' ),
        ( '14:50:32' ),
        ( '15:15:10' )

DECLARE @special_time TIME = '13:25:00'      
DECLARE @diff_value TIME = '00:20:00'

-- variable will hold the total number of seconds for your interval
DECLARE @diff_in_seconds INT

-- gets the total number of seconds of your interval -> @diff_value 
SELECT  @diff_in_seconds = DATEPART(SECOND, @diff_value) + 60
        * DATEPART(MINUTE, @diff_value) + 3600 * DATEPART(HOUR, @diff_value)

-- get the values that match the criteria
SELECT  *
FROM    #times
WHERE   val = DATEADD(SECOND, @diff_in_seconds, @special_time)
        OR val = DATEADD(SECOND, -( @diff_in_seconds ), @special_time)

DROP TABLE #times

请注意,WHERE子句通过添加和减去差异来过滤结果。通过使@diff_in_seconds为负数来实现减法。

答案 2 :(得分:0)

这是一个解决方案:

create table t(t time);

insert into t
values
    ('12:45:24'),
    ('13:05:00'),
    ('13:50:30'),
    ('14:50:32'),
    ('15:15:10')

declare @st time = '13:25:00'
declare @dt time = '00:20:00'

select * from t
where abs(datediff(ss, t, @st)) - datediff(ss, '00:00:00', @dt) = 0

abs(datediff(ss, t, @st)将在表格和特殊时间之间的秒数内保持不同。您可以将此差异与00:00:00和间隔datediff(ss, '00:00:00', @dt)

之间的差异进行比较

输出:

t
13:05:00.0000000

小提琴http://sqlfiddle.com/#!6/05df4/1