I\'m trying to do
SELECT * FROM a, b
However, it doesn\'t return anything if one of the tables is empty. How do I make it so it returns \'a
SELECT * FROM a LEFT JOIN b ON a.ID = b.ID
Will return everything from a even if b is empty.