I have a master table with one record:
employee Id
-----------
10
and detail table with 4 records:
employee Id1
-----------
10
20
10
10
My join condition is employee Id = employee Id1
with normal join type.
My question is which of the following output table will I get?
- Output employee Id table with only 1 record (10)?
Or
- Output employee Id table with 3 records (10, 10, 10)?