Skip to content

How to handle duplicates created by LEFT JOIN

LEFT TABLE: +——+———+——–+ | Name | Surname | Salary | +——+———+——–+ | Foo | Bar | 100 | | Foo | Kar | 300 | | Fo | Ba | 35 | +——+———+–…

How to convert Local_Timestamp into UTC Timestamp?

The Timestamp is the localtime of the DB2 Server. The date was stored in the time zone Europe / Berlin. I would like to convert the then stored date to UTC. Is there a way to calculate this in DB2 …