I have 2 tables that I need to match. Please see example.
TB1
ID | String1
1 | Apt 2
2 | Apt 23
3 | Apt 22
TB2
ID2| String2
1 | 23 Apartment
2 | 22 The Block
3 | 2 Complex
I need to find which ID's Match from TB1 to TB2 WHERE the number part of string 1 to string2 match
OUTPUT
ID | Matching ID2 | String1 | String 2
1 | 3 | Apt 2 | 2 Complex
2 | 1 | Apt 23 | 23 Apartment
3 | 2 | Apt 22 | 22 Apartment