回答編集履歴
1
ORDER BY修正
answer
CHANGED
@@ -8,6 +8,6 @@
|
|
8
8
|
AND T2.`logDate` BETWEEN :startDate AND :endDate
|
9
9
|
WHERE T1.`index` = 'yes'
|
10
10
|
GROUP BY T2.`contentsCode`, T1.`title`
|
11
|
-
ORDER BY
|
11
|
+
ORDER BY `totalAccess` DESC
|
12
12
|
|
13
13
|
```
|