如何限制每個id
在WHERE
子句中的結果? 我的查詢是:每個父母身份的Mysql限制
SELECT name
FROM location_areas
WHERE parent IN ("1,2,3")
ORDER BY popularity,name
父母不是唯一的。
我需要得到每個父id
在WHERE
條款的10個結果。
例如表結構是:
id name parent
1 name 0
2 name 1
3 name 1
4 name 80
5 name 80
6 name 80
7 name 80
8 name 1
把你的表結構,它很容易。 –
我希望以下鏈接幫助。 http://stackoverflow.com/questions/2740071/is-there-a-way-to-limit-results-per-group-of-result-rows-in-mysql?rq=1 –