MYSQL在连接语句中选择最大日期

MYSQL Select MAX Date inside a join statement(MYSQL在连接语句中选择最大日期)
本文介绍了MYSQL在连接语句中选择最大日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试返回记录编号的历史位置

I'm trying to return a record number's historic locations

我拥有的是:

SELECT l.location, t.transaction_id, t.date_modified 
FROM transactions as t
INNER JOIN (
SELECT
t1.received_id, t1.transaction_id, t1.date_modified
FROM (
 SELECT received_id, MAX(date_modified) as maxmodify
 FROM transactions
 GROUP BY received_id) as max_record
JOIN transactions as t1 
ON (t1.received_id =max_record.received_id)
) as whatever
INNER JOIN locations as l
ON l.location_id = t.location_id
INNER JOIN received as r
ON r.received_id = t.received_id
WHERE t.received_id='1782'
ORDER BY t.date_modified DESC

这大约需要 1 分钟来解析并返回如下数据:

This takes about 1 min to parse and returns data like:

T-E1A   67294   2013-05-29 14:05:30
T-E1A   67293   2013-05-29 14:05:30
T-E1A   67294   2013-05-29 14:05:30
T-E1A   67293   2013-05-29 14:05:30
T-E1A   67294   2013-05-29 14:05:30
T-E1A   67293   2013-05-29 14:05:30
T-E1A   67294   2013-05-29 14:05:30

我真正希望看到的是来自这样的查询的数据:

What I'm really expecting to see is data like from a query like this:

SELECT l.location, t.transaction_id, t.date_modified FROM transactions as t
JOIN locations as l
ON l.location_id = t.location_id
JOIN received as r
ON r.received_id = t.received_id
WHERE t.received_id='1782'
ORDER BY t.date_modified DESC

哪个返回

T-E1A   67290   2013-05-29 13:58:26
T-E1A   67289   2013-05-29 13:58:26
ADJUST  67283   2013-04-26 11:33:54
ADJUST  67284   2013-04-26 11:33:54
ST10    67279   2013-04-26 09:52:41
ST10    67278   2013-04-26 09:52:13
ST10    67277   2013-04-26 09:50:58
ST10    67276   2013-04-26 09:50:20
SH3     67274   2013-04-26 09:49:39

第二个查询更好,但我真的只想显示每个记录 ID 和位置的最后修改时间.

This second query is better but I really want to only show the last modified time for each record id and location.

谁能看出我做错了什么?感谢您的帮助.

Can anybody see what I'm doing wrong? I appreciate the help.

推荐答案

类似这样的...

SELECT t1.received_id
     , t1.transaction_id
     , t1.date_modified
     , l.location
  FROM transactions t1
  JOIN ( SELECT received_id, MAX(date_modified) maxmodify FROM transactions GROUP BY received_id) max_record
    ON max_record.received_id = t1.received_id 
   AND max_record.maxmodify = t1.date_modified
  JOIN locations l
    ON l.location_id = t1.location_id
  JOIN received r
    ON r.received_id = t1.received_id
 WHERE t1.received_id = '1782'
 ORDER 
    BY t1.date_modified DESC

内核是这个...

SELECT x.*
  FROM my_table x
  JOIN (SELECT id,MAX(thing) max_thing FROM my_table GROUP BY id) y 
    ON y.id = x.id 
   AND y.max_thing = x.thing;

这篇关于MYSQL在连接语句中选择最大日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)