<bdo id='Yy6ND'></bdo><ul id='Yy6ND'></ul>
<i id='Yy6ND'><tr id='Yy6ND'><dt id='Yy6ND'><q id='Yy6ND'><span id='Yy6ND'><b id='Yy6ND'><form id='Yy6ND'><ins id='Yy6ND'></ins><ul id='Yy6ND'></ul><sub id='Yy6ND'></sub></form><legend id='Yy6ND'></legend><bdo id='Yy6ND'><pre id='Yy6ND'><center id='Yy6ND'></center></pre></bdo></b><th id='Yy6ND'></th></span></q></dt></tr></i><div id='Yy6ND'><tfoot id='Yy6ND'></tfoot><dl id='Yy6ND'><fieldset id='Yy6ND'></fieldset></dl></div>
  • <small id='Yy6ND'></small><noframes id='Yy6ND'>

    <tfoot id='Yy6ND'></tfoot>

      <legend id='Yy6ND'><style id='Yy6ND'><dir id='Yy6ND'><q id='Yy6ND'></q></dir></style></legend>

        MySQL 按最新时间戳选择

        MySQL Select By Newest Timestamp(MySQL 按最新时间戳选择)
          <bdo id='MMXyW'></bdo><ul id='MMXyW'></ul>

          <small id='MMXyW'></small><noframes id='MMXyW'>

          <tfoot id='MMXyW'></tfoot>

            <legend id='MMXyW'><style id='MMXyW'><dir id='MMXyW'><q id='MMXyW'></q></dir></style></legend>
              <tbody id='MMXyW'></tbody>
            <i id='MMXyW'><tr id='MMXyW'><dt id='MMXyW'><q id='MMXyW'><span id='MMXyW'><b id='MMXyW'><form id='MMXyW'><ins id='MMXyW'></ins><ul id='MMXyW'></ul><sub id='MMXyW'></sub></form><legend id='MMXyW'></legend><bdo id='MMXyW'><pre id='MMXyW'><center id='MMXyW'></center></pre></bdo></b><th id='MMXyW'></th></span></q></dt></tr></i><div id='MMXyW'><tfoot id='MMXyW'></tfoot><dl id='MMXyW'><fieldset id='MMXyW'></fieldset></dl></div>

                  本文介绍了MySQL 按最新时间戳选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我在 SO 上看到了一些类似的问题,但是,我无法找到解决我的具体问题的方法.(仅供参考,这些不是我真正的专栏,只是一个简短的例子).

                  I've seen some similar types of questions on SO, however, I have not been able to find a solution to my specific issue. (FYI, these are not my real columns, just a shortened example).

                  我有一个基本表 my_table:

                  <头>
                  user_1user_2时间戳注意(不是表格的一部分)
                  23252012-08-10 22:00:00
                  24222012-08-10 19:00:00<==== 我想返回这一行
                  24222012-08-10 17:00:00
                  21172012-08-10 15:00:00

                  所以,我想做的是能够:

                  So, what I want to do is be able to:

                   1) Select the "newest" row, based on timestamp AND 
                   2) Select the 'user_2' column when given a value.  
                  

                  我尝试过类似的方法:

                   SELECT *
                   FROM my_table
                   WHERE user_2 = 22
                   AND timestamp = (
                   SELECT MAX( timestamp )
                   FROM my_table )
                   LIMIT 1 
                  

                  但这不会返回我正在寻找的行.任何有关修复此查询的帮助都会很棒.

                  But this does not return the row I am looking for. Any help on fixing this query would be great.

                  非常感谢.

                  推荐答案

                  SELECT * FROM my_table -- standard stuff
                     WHERE user_2 = 22 -- predicate
                     ORDER BY timestamp DESC -- this means highest number (most recent) first
                     LIMIT 1; -- just want the first row
                  

                  <小时>

                  顺便说一下,如果您想知道为什么您的原始查询不起作用,让我们分解一下:

                  By the way, in case you're curious why your original query didn't work, let's break down the pieces:

                  • my_table中选择一些东西...
                  • 其中 user_2 = 22
                  • and timestamp = (有些值,暂且搁置)
                  • 限制 1
                  • select some stuff from my_table...
                  • where user_2 = 22
                  • and timestamp = (some value, let's put it aside for now)
                  • limit 1

                  现在,回到 timestamp 值,它来自您的子查询:

                  Now, coming back to that timestamp value, it comes from your subquery:

                  SELECT MAX( timestamp ) FROM my_table
                  

                  请注意,此子查询不限制基于 user_2 的任何行——它询问整个表中的最大时间戳是多少.该最大时间戳是上表中的第一个:(user_1 = 23,user_2 = 25,timestamp = 2012-08-10 22:00:00).

                  Note that this subquery doesn't restrict any rows based on user_2 -- it asks for what's the max timestamp in the whole table. That max timestamp is the first one in your table above: (user_1 = 23, user_2 = 25, timestamp = 2012-08-10 22:00:00).

                  那么,让我们把它插回顶级查询:

                  So, let's plug that back to the top-level query:

                  • my_table中选择一些东西...
                  • 其中 user_2 = 22
                  • 和时间戳 = 2012-08-10 22:00:00
                  • 限制 1

                  ...你可以看到没有这样的一行.

                  ... and you can see there isn't such a row.

                  这篇关于MySQL 按最新时间戳选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  How to update a record using sequelize for node?(如何使用节点的 sequelize 更新记录?)
                  How to provide a mysql database connection in single file in nodejs(如何在 nodejs 中的单个文件中提供 mysql 数据库连接)
                  Looping Over Result Sets in MySQL(在 MySQL 中循环结果集)
                  How to get Top 5 records in SqLite?(如何获得 Sqlite 中的前 5 条记录?)
                  SQL Server SELECT where any column contains #39;x#39;(SQL Server SELECT,其中任何列包含“x)
                  Default row order in SELECT query - SQL Server 2008 vs SQL 2012(SELECT 查询中的默认行顺序 - SQL Server 2008 与 SQL 2012)

                      <small id='dnHij'></small><noframes id='dnHij'>

                      <tfoot id='dnHij'></tfoot>
                        <legend id='dnHij'><style id='dnHij'><dir id='dnHij'><q id='dnHij'></q></dir></style></legend>
                        • <bdo id='dnHij'></bdo><ul id='dnHij'></ul>
                            <tbody id='dnHij'></tbody>
                          <i id='dnHij'><tr id='dnHij'><dt id='dnHij'><q id='dnHij'><span id='dnHij'><b id='dnHij'><form id='dnHij'><ins id='dnHij'></ins><ul id='dnHij'></ul><sub id='dnHij'></sub></form><legend id='dnHij'></legend><bdo id='dnHij'><pre id='dnHij'><center id='dnHij'></center></pre></bdo></b><th id='dnHij'></th></span></q></dt></tr></i><div id='dnHij'><tfoot id='dnHij'></tfoot><dl id='dnHij'><fieldset id='dnHij'></fieldset></dl></div>