Order by clause for Many 2 Many in MySQL
问题 I have tables/records like this: Table: COMMENTS --------------------------------------------- COMMENT_ID | CONTENT | CREATE_DATE --------------------------------------------- 1 | Content 1 | 2016-09-01 2 | Content 2 | 2016-09-02 3 | Content 3 | 2016-09-03 4 | Reply to Content 2 | 2016-09-04 5 | Reply to Content 1 | 2016-09-05 6 | Reply to Content 2 | 2016-09-03 Table: REPLY_COMMENTS --------------------------------- COMMENT_ID | REPLY_TO_COMMENT_ID --------------------------------- 4 | 2 5 |