關於MySQL與SQLLite的Group By排序原理的區別

來源:互聯網
上載者:User

標籤:des   使用   資料   時間   log   資料庫   sql   mysql   

當我們對一個表的記錄進行group by的時候,在未明確使用sum、min、max等彙總函式的時候,group by 的定序,如下對比了MYSQL和SQLLite

大家都知道,group by的時候,資料庫是遍曆資料庫表的所有記錄進行匹配處理的。

下面的SQL目的是為了查詢表中groupid相同的記錄中,最新時間的一條訊息,給出mysql和sqllite的語句區別:

MYSQL語句

SELECT * FROM(SELECT t.id,t.data_id,t.send_username,t.recv_username,t.message,IFNULL(NULLIF(t.groupid,''),t.recv_username) AS groupid,t.`created_date`FROM tb_push_data t WHERE STATUS = 0 ORDER BY t.`created_date` desc,t.id desc) t1GROUP BY t1.groupidORDER BY t1.`created_date` DESC,t1.id DESC

SQLLite語句

select * from(select t.id,t.data_id,t.login_username,t.send_username,t.recv_username,t.message,ifnull(nullif(t.groupid,''),t.send_username) as groupid,t.timefrom tb_recved_data t where status = 0 order by t.time asc, t.id asc) t1group by t1.groupidorder by t1.time desc,t1.id desc

大家注意對比SQL可以發現,子查詢最後的ORDER BY 中,在MYSQL中使用 ASC,而在SQLLite中我們使用 DESC

原因就是:MYSQL在遍曆表記錄的時候當發現重複的group欄位時,是忽略的。而SQLLite是覆蓋的。

所以我們為了擷取最晚發送的一條記錄時,在mysql中使用desc,sqllite中使用asc

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.