I have a table, table1
that has 129 rows. I'd like to join another table table2
with 429 rows to it, and end up with only 129 rows.
So far, I've tried:
select *
from table1
left join table2 on table1.id = table2.id;
But I always end up with 429 rows.
I'm clearly missing something here. Do you know what it is?