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…
I want to join table1 with table2 on column ‘Name’, but table2.Name has an
Share
1 Answer