Hi all,
I have a column like this :
And I have an other table like this :
| A | APPLE |
| B | BEER |
| C | COCA COLA |
| F | FANTA |
| T | TONIC |
I want all the value in the column of my first table to be replaced by the matching value in the table.
So final result should be :
| APPLE |
| TONIC |
| COCA COLA |
| BEER |
| APPLE |
| COCA COLA |
| BEER |
| TONIC |
| FANTA |
| BEER |
| APPLE |
What is the quickest way to do it?
Thanks a lot for your help.
Best regards,
Axis