好的,我有一个包含数据的简单表:
id cat_id title (with random values)
1 1 test
2 1 tstt
3 3 tewt
4 2 4324
5 3 rterter
现在,我需要创建一个查询,每个类别(cat_id)只选择一个原始数据(可能具有最低 ID 并按 cat_id 排序)
所以结果应该是:
1 1 test
4 2 4324
3 3 tewt