-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Labels
Description
| " ORDER BY update_time"; |
$sql = "SELECT * " .
" FROM {assignment_comment} " .
" WHERE report_id = ?" .
" ORDER BY update_time";
修正案
日誌と同様、ORDER BY insert_timeでよいと思う。
$sql = "SELECT * " .
" FROM {assignment_comment} " .
" WHERE report_id = ?" .
" ORDER BY insert_time";
Reactions are currently unavailable