I'm trying to join two tables where my matching condition is a field from one table should match the start of a field in the other table.
I could not find such an option in the parameters for the Join tool. I could also not find a tool that seemed like would do this.
The issue is that the length of the field to be matched is variable so I cannot really create a new field with a formula to match that either.
Or else could i make a Join using contains()?
The field in table Left would look like:
| Record | Name | Value |
| 1 | Sesame street | 12 |
| 2 | Ocean Drive | 32 |
| 3 | Mile End Road | 1.5 |
My table Right would have the following format:
| Record | Address | Owner |
| 1 | Sesame street 5 | Cookie Monster |
| 2 | Sesame street 5 - 5th floor | Cookie Monster's mother in law |
| 3 | Ocean Drive 12112 | Eminem |
| 4 | Mile End Road | David Hasselhof |
| 5 | Mile End Road 1235B | Luke Skywalker |
Any ideas?
Thanks!