I did this once before but don't remember how ... I've struggled with it enough and am now looking for help.
I have a table with two columns: Uuid and ProcessId The ProcessId column currently has two values in it: ValueA and ValueB
I want to do a self join (full outer join?) such that with the following table:
1234 ValueA 1234 ValueB 2345 ValueB 3456 ValueA
I will have a result as follows:
Uuid ValueA ValueB 1234 OK OK 2345 Missing OK 3456 OK Missing