I want to join table1 with table2 on column 'Name', but table2.Name has an 'e' in front of all the names (if table1.name=ABC,table2.name=eABC). How am I supposed to use a join for those two?
I tried FROM table1 join table2 on 'e'+table1.name = table2.name, but it doesn't work...
|
|
|
||
|
|
|
|
|
||
|
|
|
|
Try using a substring of the table2 name. So something like:
I can't remember if substring is zero based, so just play with the numbers. |
||
|
|
