I need to join two tables, example below:
table 1
K a b c
P x x x
P x x x
P x x x
table 2
K a b c
P x x x
P x x x
P x x x
Final table
K a b c d e f
P x x x . . .
P x x x . . .
P x x x . . .
P . . . x x x
P . . . x x x
P . . . x x x
All the unions I've tried don't get my result properly.
Thanks!