HI,
What is the easiest workflow to do a simple left outer join?
I have a data table :
a look up table :
And I require the following output :
| ID | CODE | Value |
| 1 | a | XYZ |
| 2 | a | XYZ |
| 3 | b | DEF |
| 4 | b | DEF |
| 5 | b | DEF |
| 6 | c | |
| 7 | d | |
| 8 | e | KJL |
Can anyone advise please?
Many thanks!