在MAX(DATE)左加入

时间:2015-08-28 07:43:15

标签: mysql join maxdate

我有2个表:交易(a)和价格(b)。我想从表b中检索在交易日期有效的价格。

表a包含文章交易的历史记录: Store_type,Date,Article,...

表b包含商品价格的历史记录: Store_type,Date,Article,price

目前我有这个:

Select
a.Store_type,
a.Date
a.Article,
(select b.price
  from PRICES b
  where b.Store_type = a.Store_type
  and b.Article = a.Article
  and b.Date = (select max(c.date)
    from PRICES c
    where c.Store_type = a.Store_type
    and c.Article = a.Article
    and c.date <= a.date)) AS ART_PRICE
from TRANSACTIONS a

它工作正常,但由于双子查询,它似乎需要很长时间。 LEFT JOIN也可以这样做吗?

1 个答案:

答案 0 :(得分:0)

可以尝试使用以下查询吗?

SELECT      a.Store_type, a.Date, a.Article, b.Price
FROM        TRANSACTIONS a
LEFT JOIN   PRICES b ON a.Store_type = b.Store_type
AND         a.Article = b.Article
AND         b.Date = (SELECT   MAX (c.Date) 
                      FROM     PRICES c 
                      WHERE    a.Store_type = c.Store_Type
                      AND      a.Article = c.Article
                      AND      c.Date <= a.Date)

它仍然有一个子查询,用于检索最大日期。