You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In MSSQL, JOIN statement is allowed to take in LIKE clause instead of the usual exact match condition.
Hence, I am wondering how is the left_on key being compared to the right_on key in merge. So that maybe I can try to change the exact match to a fuzzy match :(
The text was updated successfully, but these errors were encountered:
pd.merge only does exact matches with the left_on, right_on, and on arguments. You must do fuzzy merges manually like how this stackoverflow post demonstrates.
In MSSQL, JOIN statement is allowed to take in LIKE clause instead of the usual exact match condition.
Hence, I am wondering how is the left_on key being compared to the right_on key in merge. So that maybe I can try to change the exact match to a fuzzy match :(
The text was updated successfully, but these errors were encountered: