Can anyone see why this left join isn't working?

select notifications.id, notifications.status, notifications."receiverId", notifications."notificationObjectId"
from 
  notifications
left join 
  "notificationObjects" on notifications."notificationObjectId" = "notificationObjects".id;
Screenshot_2022-09-19_at_11.22.23.png
Was this page helpful?