質問するログイン新規登録

回答編集履歴

1

変更

2017/05/26 07:58

投稿

A.Ichi
A.Ichi

スコア4070

answer CHANGED
@@ -9,5 +9,5 @@
9
9
  ON t1.`use_date`=t2.`use_date` AND t1.`in_station`=t2.`in_station`
10
10
  AND t1.`out_station`=t2.`out_station` AND t1.`is_request`=t2.`is_request`
11
11
  GROUP BY t2.`use_date`,t2.`in_station`,t2.`out_station`,t2.`is_request`) t3
12
- USING(`id`) ORDER BY t4.`id` DESC
12
+ USING(`id`) ORDER BY t4.`use_date` DESC, t4.`id` DESC
13
13
  ```