Hi,
I have a input table which is shown below,
Name | Company |
Jim | Apple |
Ben | |
Don | TCS |
Sam | Infy |
Now I have a different table which looks like this,
Company |
TCS |
IBM |
Oracle |
Apple |
Infy |
My question is how can we replace the company name for all the people mentioned in the first table with a random company name from the second table and for aparticular person the company name should always be different form the one mentioned in the first table. The final table should look like this
Name | Company |
Jim | IBM |
Ben | Oracle |
Don | Apple |
Sam | TCS |
Thanks in advance for the help
Regards,
Austin