How do i map this tableP | K | A | B=====================1 | x | 3 | 52 | x | 9 | 193 | x | 4 | 11 | y | 1 | 02 | y |-1 | -2
Into thisP | x_A | x_B | y_A | y_B============================1 | 3 | 5 | 1 | 02 | 9 | 19 | -1 | -23 | 4 | 1 | null| null
Perhaps it somekind of an row to columns operations,But i dont know how.P here is the periode and K is the group.And last A and B is different types vid of course different valuesThanks