我有从我的表中选择的结果:
id tag
1 hey
1 wow
2 cry
87 game
87 bmw
6 lady
7 wow
但是我通过 JOIN 得到了这个结果。我的完整 SQL 查询:
SELECT sites.id, sites.host, sites.url, sites.password, sites.status, sites.pr, sites.tyc, sites.alexa, sites.lastcheck, sites.comment, tags.tagname, tags.tagid FROM sites
LEFT JOIN sites_tags ON sites_tags.shellid = sites.id
LEFT JOIN tags ON sites_tags.tagid = tags.tagid
对于分页,我需要来自查询的 3 个实际数据。
如果我的查询 - LIMIT 3,我想得到
1 hey
1 wow
2 cry
87 game
87 bmw
但不是
1 hey
1 wow
2 cry
例如,我需要所有受 ID 限制的结果,而不是行。
抱歉英语不好。