SQL優化:組內排序取最大值
最近業務反饋一個查詢異常的問題,需要DBA對查詢結果異常給出解釋,並幫助他們解決該問題。問題本質是一個組內排序取最大值的問題,根據業務需求,我構建了測試用例
測試用例
--建表
create table testorder
(id int not null,
no int not null,
name char(10) not null,
primary key(id)
)engine=innodb;
--寫入資料
insert into testorder values (1,1,'Mike'),(2,2,'John'),(3,3,'wyett'),(4,4,'Herry'),(5,5,'Mike'),(6,1,'John'),(7,2,'John'),(8,1,'Mike'),(9,1,'Mike');
--查詢1
select * from testorder;
+----+----+-------+
| id | no | name |
+----+----+-------+
| 1 | 1 | Mike |
| 2 | 2 | John |
| 3 | 3 | wyett |
| 4 | 4 | Herry |
| 5 | 5 | Mike |
| 6 | 1 | John |
| 7 | 2 | John |
| 8 | 1 | Mike |
| 9 | 1 | Mike |
+----+----+-------+
--查詢2
select * from testorder order by no desc;
+----+----+-------+
| id | no | name |
+----+----+-------+
| 5 | 5 | Mike |
| 4 | 4 | Herry |
| 3 | 3 | wyett |
| 2 | 2 | John |
| 7 | 2 | John |
| 1 | 1 | Mike |
| 6 | 1 | John |
| 8 | 1 | Mike |
| 9 | 1 | Mike |
+----+----+-------+
--查詢3 select * from (select id,no,name from testorder order by no desc)a group by a.name;
查詢3這條SQL是我們需要討論的內容,也是業務線為實現組內排序取最大值所採用的SQL。標準的程式設計師反饋問題方式:XXX時間點之前查詢時正常的,這之後突然就不正常了,你們DBA是不是做什麼改動了?我把資料恢復到自己的測試機,返回值也是正常的。暫且不去管姿勢是否正確,對這條SQL的分析,我們其實可以看出:(1)程式設計師期待group by執行結果是按照臨時表a的資料順序來取值;(2)程式設計師未考慮版本因素,資料量變化的因素;為此,我構建了上面的測試用例。
測試
在不同版本的MySQL來進行測試:發現在Percona 5.5,Percona 5.1,MySQL 5.6關閉sql_mode= ONLY_FULL_GROUP_BY,MySQL5.1等版本下,返回值確如程式設計師期待的順序,按照order by no desc的順序,相同name返回no值最大的資料;
+----+----+-------+ | id | no | name | +----+----+-------+ | 4 | 4 | Herry | | 2 | 2 | John | | 5 | 5 | Mike | | 3 | 3 | wyett | +----+----+-------+
在mysql5.7,關閉sql_mode= ONLY_FULL_GROUP_BY和mariadb 10.*版本中,相同的name值,返回則是取了最早寫入的資料行,忽略了order by no desc,按照資料的邏輯儲存順序來返回;
+----+----+-------+ | id | no | name | +----+----+-------+ | 4 | 4 | Herry | | 2 | 2 | John | | 1 | 1 | Mike | | 3 | 3 | wyett | +----+----+-------+
其實在這裡,SQL等價於select id,no,name from testorder group by name。
這裡我們看出不同版本的返回值是不同的,先擱置資料量的變化引起執行結果不同的討論,因為資料量大小很難測試。
官方文件
對上面的測試結果,在官方文件上,有如下的參考
If ONLY_FULL_GROUP_BY is disabled...In this case, the server is free to choose any value from each group, so unless they are the same, the values chosen are indeterminate, which is probably not what you want. Furthermore, the selection of values from each group cannot be influenced by adding an ORDER BY clause. Result set sorting occurs after values have been chosen, and ORDER BY does not affect which value within each group the server chooses.
ONLY_FULL_GROUP_BY這個SQL_MODE出在mysql5.6(mariadb 10.0)時被引入,但本文討論的內容和它無關,具體可以自己檢視文件,這裡不做討論。在5.6,5.5的官方文件有相同的內容,Mariadb也有類似的解釋
If you select a non-grouped column or a value computed from a non-grouped column, it is undefined which row the returned value is taken from. This is not permitted if the ONLY_FULL_GROUP_BY SQL_MODE is used.
並且,對from後的subquery子表中的order by也給出瞭解釋
A query such as SELECT field1, field2 FROM ( SELECT field1, field2 FROM table1 ORDER BY field2 ) alias returns a result set that is not necessarily ordered by field2. This is not a bug. A "table" (and subquery in the FROM clause too) is - according to the SQL standard - an unordered set of rows. Rows in a table (or in a subquery in the FROM clause) do not come in any specific order.
好了,有了這些解釋,問題很明朗:
- 在from 後的subquery中的order by會被忽略
- group by cloumn返回的行是無序的
因此,業務獲得的正確的返回值也是誤打誤撞。
解決辦法
那麼這個問題該怎麼解決?
在網上有一些SQL,很明顯不滿足需求,在這裡做一下展示,希望同學們避免被誤導:
錯誤SQL集合
select id,sbustring(GROUP_CONCAT(distinct no order by no desc separator ''),'',1),name from testorder group by name;
--通過新增索引來影響返回的結果集順序 alter table testorder add index idx_no_name(no desc, name); --結果證明即使如此,desc也不會被正確執行;
--我司程式設計師的寫法 select * from (select id,no,name from testorder order by no desc)a group by a.name
select id,max(no),name from testorder group by name
我們可以這樣寫,雖然效率不高
select a.id,a.no,a.name from testorder a inner join (select max(no) no,name from testorder group by name) b on a.no=b.no and a.name=b.name group by name,no
或者這樣
select a.id,a.no,a.name from testorder a group by a.name,a.no having a.no=(select max(no) from testorder where name=a.name)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29730827/viewspace-2136118/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- SQL最佳化:組內排序取最大值SQL排序
- oracle sql 排序優化OracleSQL排序優化
- SQL優化之利用索引排序SQL優化索引排序
- SQL 分組排序取最新一條記錄SQL排序
- 選取組內最小值的sqlSQL
- 高效的SQL(index range scan優化排序)SQLIndex優化排序
- SQL 分組排序group bySQL排序
- MySQL GROUP BY分組取欄位最大值MySql
- Orderby 排序優化排序優化
- 外部排序優化排序優化
- Mysql 分組排序的sql寫法MySql排序
- 快速排序及其優化排序優化
- [Hive]Hive排序優化Hive排序優化
- 快速排序及優化排序優化
- 【SQL優化】SQL優化工具SQL優化
- SQL Server優化之SQL語句優化SQLServer優化
- SQL優化SQL優化
- with as優化sql優化SQL
- 效能優化案例-SQL優化優化SQL
- 在不同的資料庫內移植SQL PROFILE優化的SQL資訊資料庫SQL優化
- sql改寫優化:簡單規則重組實現SQL優化
- 插入排序以及優化排序優化
- 如何優化氣泡排序?優化排序
- 氣泡排序及優化排序優化
- sql取每組最新資料SQL
- 資料庫優化 - SQL優化資料庫優化SQL
- sql優化之邏輯優化SQL優化
- SQL優化:limit分頁優化SQL優化MIT
- MySQL 效能優化之SQL優化MySql優化
- SQL優化--用各種hints優化一條SQLSQL優化
- 【SQL優化】SQL優化的10點注意事項SQL優化
- SQL SERVER中SQL優化SQLServer優化
- SQL優化指南SQL優化
- SQL SERVER優化SQLServer優化
- sql效能優化SQL優化
- Sql優化方法SQL優化
- oracle sql優化OracleSQL優化
- SQL優化-索引SQL優化索引