sql >> Base de Datos >  >> RDS >> Sqlserver

Combinación interna de SQL en valores nulos

Tienes dos opciones

INNER JOIN x
   ON x.qid = y.qid OR (x.qid IS NULL AND y.qid IS NULL)

o más fácil

INNER JOIN x
  ON x.qid IS NOT DISTINCT FROM y.qid