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

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

        <tfoot id='S9lb7'></tfoot>
          <bdo id='S9lb7'></bdo><ul id='S9lb7'></ul>
      1. <small id='S9lb7'></small><noframes id='S9lb7'>

        如何使用 ActiveRecord 在 mysql 中使用 DISTINCT ON

        how to use DISTINCT ON with mysql using ActiveRecord(如何使用 ActiveRecord 在 mysql 中使用 DISTINCT ON)
          <bdo id='vDSer'></bdo><ul id='vDSer'></ul>
        • <tfoot id='vDSer'></tfoot>

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

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

                  <tbody id='vDSer'></tbody>
                • <legend id='vDSer'><style id='vDSer'><dir id='vDSer'><q id='vDSer'></q></dir></style></legend>

                  本文介绍了如何使用 ActiveRecord 在 mysql 中使用 DISTINCT ON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  想要所有不同用户的所有最新访问.

                  Want all the latest visit of all the distinct user.

                  为此,我使用以下查询

                  Event.order(time: :desc).select('DISTINCT ON(user_id) user_id, time')
                  

                  出现 SQL 语法错误.

                  Getting SQL syntax error.

                  ActiveRecord::StatementInvalid (Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ON(user_id) user_id, time FROM `events` ORDER BY `events`.`time` DESC ' at line 1: SELECT  DISTINCT ON(user_id) user_id, time FROM `events` ORDER BY `events`.`time` DESC LIMIT 11)
                  

                  事件表列名

                  ["id", "visit_id", "user_id", "name", "properties", "time"] 
                  

                  谁能帮我解决这个问题

                  预期的输出是这样的

                  { 21 => "2018-12-18 09:44:59", 42 => "2018-12-19 12:08:59"}
                  

                  21 是 user_id,value 是上次访问时间

                  21 is user_id and value is last visit time

                  使用mysql作为数据库

                  推荐答案

                  所以你希望所有用户访问的最后一次访问时间.

                  So you want all user visits with last visited time.

                  您可以使用 GROUPMAX 函数代替 DISTINCT 函数.

                  Instead of use DISTINCT function, you can use GROUP with MAX function.

                  查询看起来像

                  Events.group(:user_id).maximum(:time)
                  

                  这会输出您想要的结果

                  {21=>Tue, 18 Dec 2018 11:15:24 UTC +00:00, 23=>Thu, 20 Dec 2018 06:42:10 UTC +00:00}
                  

                  希望这对你有用.

                  仅供参考DISTINCT ON(列).是 PostgreSQL 语法.

                  FYI DISTINCT ON(columns). is PostgreSQL Syntax.

                  这篇关于如何使用 ActiveRecord 在 mysql 中使用 DISTINCT ON的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
                  What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                  MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                  MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                  Why Mysql#39;s Group By and Oracle#39;s Group by behaviours are different(为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同)
                  MySQL GROUP BY DateTime +/- 3 seconds(MySQL GROUP BY DateTime +/- 3 秒)
                    <tbody id='eBrK2'></tbody>
                  <legend id='eBrK2'><style id='eBrK2'><dir id='eBrK2'><q id='eBrK2'></q></dir></style></legend>

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

                    1. <small id='eBrK2'></small><noframes id='eBrK2'>

                          <tfoot id='eBrK2'></tfoot>
                          • <bdo id='eBrK2'></bdo><ul id='eBrK2'></ul>