40

dbo.X我有一张DateTime column Y可能有数百条记录的表。

我的存储过程有参数@CurrentDate,我想找出column Y上表dbo.X中小于和最接近的日期@CurrentDate.

如何找到它?

4

4 回答 4

80

where 子句将匹配日期小于 @CurrentDate 的所有行,并且由于它们是按后代排序的,因此 TOP 1 将是最接近当前日期的日期。

SELECT TOP 1 *
FROM x
WHERE x.date < @CurrentDate
ORDER BY x.date DESC
于 2012-12-24T15:36:35.043 回答
16

使用DateDiff并按该日期与输入之间的天数或秒数对结果进行排序

像这样的东西

    select top 1 rowId, dateCol, datediff(second, @CurrentDate, dateCol) as SecondsBetweenDates
    from myTable
    where dateCol < @currentDate
    order by datediff(second, @CurrentDate, dateCol)
于 2012-12-24T15:33:11.093 回答
2

我认为我对这个问题有更好的解决方案。

我将展示一些图像来支持和解释最终解决方案。

背景 在我的解决方案中,我有一张外汇汇率表。这些代表不同货币的市场汇率。但是,我们的服务提供商在费率馈送方面存在问题,因此某些费率的值为零。我想用与丢失汇率最接近的同一货币的汇率填充丢失的数据。基本上我想获得最接近的非零利率的 RateId,然后我将替换它。(这在我的示例中没有显示。)

1)首先让我们确定丢失的费率信息:

查询显示我的缺失率,即率值为零

2)接下来让我们确定没有丢失的费率。 查询显示未丢失的费率

3) 这个查询是魔法发生的地方。我在这里做了一个假设,可以删除但添加以提高查询的效率/性能。第 26 行的假设是,我希望在丢失/零交易的同一天找到替代交易。神奇的是第 23 行:Row_Number 函数添加了一个从 1 开始的自动编号,用于丢失和未丢失事务之间的最短时间差。下一个最近的事务的 rownum 为 2 等。

请注意,在第 25 行中,我必须加入货币,以免与货币类型不匹配。那就是我不想用瑞士法郎值代替澳元货币。我想要最接近的匹配货币。

将两个数据集与 row_number 组合以识别最近的交易

4) 最后,让我们获取 RowNum 为 1 的数据 最终查询

查询全查询如下;

    ; with cte_zero_rates as
(
        Select      * 
        from        fxrates
        where       (spot_exp = 0 or spot_exp = 0) 
),
cte_non_zero_rates as
(
        Select      * 
        from        fxrates
        where       (spot_exp > 0 and spot_exp > 0) 
)
,cte_Nearest_Transaction as
(
        select       z.FXRatesID    as Zero_FXRatesID
                    ,z.importDate   as Zero_importDate
                    ,z.currency     as Zero_Currency
                    ,nz.currency    as NonZero_Currency
                    ,nz.FXRatesID   as NonZero_FXRatesID
                    ,nz.spot_imp
                    ,nz.importDate  as NonZero_importDate
                    ,DATEDIFF(ss, z.importDate, nz.importDate) as TimeDifferece
                    ,ROW_NUMBER() Over(partition by z.FXRatesID order by abs(DATEDIFF(ss, z.importDate, nz.importDate)) asc) as RowNum
        from        cte_zero_rates z 
        left join   cte_non_zero_rates nz on nz.currency = z.currency
                    and cast(nz.importDate as date) = cast(z.importDate as date)
        --order by  z.currency desc, z.importDate desc
)
select           n.Zero_FXRatesID
                ,n.Zero_Currency
                ,n.Zero_importDate
                ,n.NonZero_importDate
                ,DATEDIFF(s, n.NonZero_importDate,n.Zero_importDate) as Delay_In_Seconds
                ,n.NonZero_Currency
                ,n.NonZero_FXRatesID
 from           cte_Nearest_Transaction n
 where          n.RowNum = 1
                and n.NonZero_FXRatesID is not null
 order by       n.Zero_Currency, n.NonZero_importDate
于 2018-01-05T12:36:58.310 回答
-7
CREATE PROCEDURE CurrentDate
@CurrentDate DATETIME
AS
BEGIN
    Select * from orders
    where OrderDate < @CurrentDate
END
GO
于 2012-12-24T15:54:01.913 回答