SQL Server连接查询获取最近日期最接近另一个日期的行



我看了很多页面,还是找不到我想要的。我有一个select语句,我想要得到最晚的日期它大于50例如:

如果我有两个日期:2015/06/01和2015/07/01,在我的表中,我有一个日期为2015/05/01的记录和另一个日期为2015/06/20的记录。

对于2015/06/01,我希望它的最大日期大于这种情况下的2015/05/01。

对于2015/07/01,我想要它大于的最大日期,在这种情况下,它将是2015/06/20。

我只想要一个选项来返回不是所有的匹配,这是我目前得到的。

还有其他连接等其他表,它会使用所有这些表,但出于这个目的,我已经拿出了这些信息,因为它是无关的,我想要实现的。如果你需要更多的信息,请评论。

注释后,我创建了一个提琴数据库结构,http://sqlfiddle.com/#!6/2738f/2/0.

所以这是我当前的查询:

With IptBandRates as (
    select 
    ibr.ipt_band_code,
    ibr.ipt_rate,
    ibr.concessionary_date,
    max(ibr.concessionary_date) as concessionary_date2
    from product.ipt_band_rates ibr
    inner join quote.quote qu on '4' = qu.quote_id 
    where ibr.concessionary_date <= qu.[effective_date]
    group by ibr.concessionary_date, ibr.ipt_rate, ipt_band_code
)
select 
IptBandRates.ipt_rate as ipt_rate
from quote.premium
inner join quote.cover on quote.premium.cover_id = quote.cover.cover_id
inner join quote.quote qu on quote.cover.quote_id = qu.quote_id 
inner join product.premium_class on
 quote.cover.product_code = product.premium_class.product_code and
 quote.cover.product_ver_no = product.premium_class.product_ver_no and
 quote.cover.class_type_code = product.premium_class.class_type_code
 inner join product.ipt_band on  
 product.premium_class.ipt_band_code = product.ipt_band.ipt_band_code 
 inner join IptBandRates on 
 product.ipt_band.ipt_band_code = IptBandRates.ipt_band_code
 inner join product.ipt_band_rates ibrs on 
 ibrs.ipt_band_code = IptBandRates.ipt_band_code and
 ibrs.concessionary_date = IptBandRates.concessionary_date
where qu.quote_id  = '4'

你需要这样的东西吗?

x是包含您的日期的表,而y只是一个引用,用于获取每个月1日的日期,以提取小于…的最大日期。

;with 
x as (
    select 1 id, '2015/05/01' d
    union all
    select 2 id, '2015/06/20' d
    union all
    select 3 id, '2015/06/15' d
    union all
    select 4 id, '2015/05/10' d
    union all
    select 5 id, '2015/07/02' d
    union all
    select 6 id, '2015/04/02' d
),
y as (
    select '2015/05/01' ref_month
    union all
    select '2015/06/01' 
    union all
    select '2015/07/01' 
)
SELECT * 
FROM y
    outer apply (
        select MAX(d) max_date
        from x
        where d < y.ref_month
    ) z

结果将是:

ref_month   max_date
2015/05/01  2015/04/02
2015/06/01  2015/05/10
2015/07/01  2015/06/20

我知道这是旧的,但这是一种方法。

IF OBJECT_ID('tempdb..#FilteringDates') IS NOT NULL
    DROP TABLE #FilteringDates
CREATE TABLE #FilteringDates (filterDate DATE)
INSERT INTO #FilteringDates (
    filterDate)
VALUES
    ('2018-01-01'),
    ('2018-02-15'),
    ('2018-03-20')
IF OBJECT_ID('tempdb..#DataDates') IS NOT NULL
    DROP TABLE #DataDates
CREATE TABLE #DataDates (
    dataDate DATE,
    otherValue INT)
INSERT INTO #DataDates (
    dataDate,
    otherValue)
VALUES
    ('2017-06-01', 1),
    ('2018-01-03', 90),
    ('2018-01-15', 150),
    ('2018-01-20', 35),
    ('2018-02-20', 400),
    ('2018-03-10', 425),
    ('2018-04-20', 3)

;WITH DateRankings AS
(
    SELECT
        F.filterDate,
        D.dataDate,
        D.otherValue,
        MostRecentRanking = ROW_NUMBER() OVER (
            PARTITION BY
                F.filterDate
            ORDER BY
                D.dataDate DESC)
    FROM
        #FilteringDates AS F
        INNER JOIN #DataDates AS D ON D.dataDate <= F.filterDate
)
SELECT
    D.filterDate,
    MostRecentDate = D.dataDate,
    D.otherValue
FROM
    DateRankings AS D
WHERE
    D.MostRecentRanking = 1

最新更新