我想在我的 mysql DB 上做一件事。
我有两张桌子:
第一表:
| article | longtext | YES | | NULL | |
| article_id | int(11) | YES | | NULL | |
第二表:
| id | int(11) |
| name | longtext |
| commit_date | date |
当 first_table.article_id = second_table.id 时,article = name。
我想从第一个表中选择 article 和 article_id 并按 commit_date 对它们进行排序(对每条记录都正确),它位于第二个表中。
怎么做?