mysql 分組取最新時間
SELECT t2.* FROM ( SELECT a, b, max(time) FROM test_table GROUP BY a, b ORDER BY time ...