We are joining 2 tables in enrichment.
In Table 1, we have unique email-id as the only column.
In Transaction table we have Email-id, Amount & date columns.
i am joining it with transaction table which has multiple records for every email-id.
We have 15 records in the Table1 & the transaction table has 19 records. All the email ids of transaction table is present in table1.
However, on joining we are getting only 15 records instead of the expected 19 records.
We tried joining it will all possible cardinalities. 1:1, 1:N, 1:0
Unable to understand where are we going wrong.