Sesuatu seperti ini.
Select people.id, people.name, count(interest.id)
from people
left join people_interests on people.id = people_interests.peopleid
left join interests on people_interests.interestid = interests.interest.id
where interests.id in (select id from interests where interests.peopleid = @inputuserid)
group by people.id, people.name
order by count(interest.id)
Dalam bahasa Inggris (yang mungkin membuatnya lebih jelas atau tidak.)
- Pilih nama orang dan jumlah minat yang mereka bagikan
- Dari tabel orang
- Gabung dengan tabel minat sehingga tabel tersebut
- Apakah hanya kepentingan orang yang kita coba cocokkan.
- (kelompokkan menurut orang
- dan urutkan berdasarkan jumlah minat yang cocok.)
Diperbarui tanpa sub kueri tetapi kurang jelas
Select people.id, people.name, count(interest.id)
from people
left join people_interests on people.id = people_interests.peopleid
left join interests on people_interests.interestid = interests.interest.id
inner join interest i2 on (interests.id = i2.id and i2.people_id = @inputuserid)
group by people.id, people.name
order by count(interest.id)