I have a VERY simple query that looks something like this:
select a.id, b.id
from table1 a, table2 b
where a.id = b.id;
Now table1 has 3 records with the same ID and table2 has three records with the same ID. I expected to get 3 records returned.
I actually get 9. This query has worked...