Solusi "Kecurangan", menggunakan GROUP_CONCAT()
. Ini tidak akan menunjukkan jumlah pertanyaan yang tidak terkait dengan topik apa pun:
SELECT
TopicIds
, COUNT(*) AS QuestionCount
FROM
( SELECT
QuestionId
, GROUP_CONCAT(TopicId ORDER BY TopicId) AS Topics
FROM
QuestionTopic
GROUP BY
QuestionId
) AS grp
GROUP BY
Topics