Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Unindo tabelas diferentes com base no valor da coluna


Não tenho 100% de certeza de que a sintaxe está correta e não tenho chance de testá-la agora, mas a ideia deve estar clara.
SELECT DISTINCT n.id 
FROM notifications n 
JOIN (
     (SELECT b.id, 'book' AS type FROM books b WHERE b.is_visible = 1)
  UNION
     (SELECT i.id, 'interview' AS type FROM interviews i WHERE i.is_visible = 1)
) ids ON n.parent_id = ids.id AND n.parent_type = ids.type
WHERE n.user_id = 1