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 a.*, b.* FROM a LEFT JOIN b ON a.id = b.id
in this example id is just example name for join key