I have two table that I want to combine without FULL OUTER JOIN as it not work in h2 db. I have to create select sql query:I have tried much with UNION too but I think it will not be possible with UNION.
Table 1
id     c_id       s_id           p_date
---------------------------------------------
1       1          1              2020-10-10
2       1          1              2020-10-11
3       2          1              2020-10-11
4       2          2              2020-10-12
Table 2
id     c_id       s_id           s_date
---------------------------------------------
1       1          1              2020-10-15
2       1          2              2020-10-16
3       2          2              2020-10-17
4       2          2              2020-10-17
I am expecting below result:
    c_id       s_id      p_date        s_date
    -------------------------------------------------
    1          1        2020-10-10      2020-10-15
    1          1        2020-10-11         -
    1          2            -           2020-10-16
    2          1        2020-10-11         -
    2          2        2020-10-12      2020-10-17
    2          2            -           2020-10-17
    
Please help to get this result.
 
    