कुछ इस तरह
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
लेकिन मैं बहुरूपी संबंधों से बचने के लिए आपके सिस्टम को फिर से डिज़ाइन करने की दृढ़ता से अनुशंसा करता हूं...