Mysql
 sql >> Database >  >> RDS >> Mysql

Unisci la tabella in base al valore della colonna nella tabella principale

Qualcosa come

SELECT *
FROM notificationTable notification   
LEFT JOIN commentTable comment
ON (notification.typeID = comment.ID AND notification.type == 'comment')
LEFT JOIN evenTable event
ON (notification.typeID = event.ID AND notification.type == 'accept')
WHERE notification.userID = 2

Ma consiglio vivamente di riprogettare il tuo sistema per evitare relazioni polimorfiche...