When using 2 Left Joins in the same query does the second Left Join work with the results from the first Left Join or with the table? For example:
SELECT firstName, LastName, Social, Birthplace
FROM Employee
LEFT JOIN ON Birthdays
LEFT JOIN ON Socials
Does the last LEFT JOIN use the results from the first Left JOIN or not?