I have two tables:
reference_id | exclusiveness |
---|---|
0047465 | luxury |
0165797 | luxury |
0013286 | selective |
BB010 | selective |
ticket-reference_id | product-reference_id |
---|---|
2017010105521000016V | 47465 |
2017010105521000090V | 165797 |
2017010105521000111V | 13286 |
2017010105521000111V | BB010 |
For both tables i have used the code:
pd.read_csv('df1.csv', sep = ';')
pd.read_csv('df2.csv', sep = ';')
But in the second table in the column product_reference_id zeros are missed. The values from the column product_reference_id and reference_id have to be the same. So that i could join both tables.