Du har två alternativ
INNER JOIN x
ON x.qid = y.qid OR (x.qid IS NULL AND y.qid IS NULL)
eller lättare
INNER JOIN x
ON x.qid IS NOT DISTINCT FROM y.qid
Du har två alternativ
INNER JOIN x
ON x.qid = y.qid OR (x.qid IS NULL AND y.qid IS NULL)
eller lättare
INNER JOIN x
ON x.qid IS NOT DISTINCT FROM y.qid