I have the following SQL statement:
SELECT *
FROM A INNER JOIN B ON A.ID = B.UNIQUEID
LEFT JOIN C ON A.ID = C.CID
I create an universe but I'm unable to join the tables due I don't have any idea join the tables using the LEFT JOIN. The left join is necessary to join these 3 tables.