I have a table similar to this one:
Date | Cond | Time
---------+--------+------
18/03/19 | 1 | 13:07
18/03/19 | 0 | 16:07
I want to have a selection that would produce thing similar to that using join or union or any sort of condition
Date | Time1 | Time2
----------+-------+------
18/03/19 | 13:07 | 16:07
Best regards