Hi
I have an example query that i’m using but it only returns objectA if a join exists, from my understanding left join should return all objectA’s even if no join exists?
SELECT objectA.*, objectB.fullName as bname
FROM `default` objectA
LEFT JOIN `default` objectB
ON objectA.value = objectB.value
WHERE objectA.type = "objectAType"
and objectB.type = "objectBType"