I have two values I want to compare. Samples of those are the following:
- '01/04/2020T07.08.45'
- '2020-04-01 14:46'
I want to transform the first value into the same mask as the second, so I can use it to join two tables lateron.
The first value is saved in a different time-zone than the second. I also need to convert that by adding two hours to the first value, depending on the moment I ran the comparasing.
Using substring didn't solve my problem as I wasn't able to add two hours to a string. The to_date function also didn't brought me anything.
Can you help me?