0
我查詢 -最後輸入的值一行由MySQL
SELECT id, MAX(sl), details_sp FROM shareholderreceive GROUP BY id
,並導致
id MAX(sl) details_sp
1 76
2 74
3 64
4 67
5 69
6 70
10 72
但我需要那些MAX(SL)凡details_sp列有最後輸入的值。
我的預期表 -
id MAX(sl) details_sp
1 72 Jul'16
2 74
3 64
4 62 Aug'16
5 69
6 70
10 71 Aug'16
這裏,數據類型details_sp是VARCHAR。 我在MySQL中需要什麼查詢?
按group by子句排序,另一個group by字段按彙總函數選擇。 –