By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
| src__id | period | amount_a | amount_b | amount_c |
|---|---|---|---|---|
| id1 | Q1 | 2 | 9 | null |
| id2 | Q2 | null | 1 | 4 |
SELECT 2
| src__id | period | amount_a | src__id | period | amount_b | src__id | period | amount_c |
|---|---|---|---|---|---|---|---|---|
| id1 | Q1 | 2 | id1 | Q1 | 9 | null | null | null |
| null | null | null | id2 | Q2 | 1 | null | null | null |
| null | null | null | null | null | null | id2 | Q2 | 4 |
SELECT 3
| src__id_o | period_o | amount_a | amount_b | amount_c |
|---|---|---|---|---|
| id1 | Q1 | 2 | 9 | null |
| id2 | Q2 | null | 1 | null |
| id2 | Q2 | null | null | 4 |
SELECT 3
| src__id_o | period_o | amount_a | amount_b | amount_c |
|---|---|---|---|---|
| id1 | Q1 | 2 | 9 | null |
| id2 | Q2 | null | 1 | 4 |
SELECT 2