I need a query to convert timezone in PostgreSQL
I have already tried this query
Select users.last_update_time + interval '7 hours'
And it plus for my result 7 hours.
But I have a problem that if I choose results from 31/01/2022 to 06/02/2022. It will include the result on 07/02/2022. Example before I plus 7 hours, it's on around 17:00 06/02/2022 to 00:00 07/02/2022.
The correct result has to be after +7 hours. So it means that result after plus 7 hours from 17:00 06/02/2022 to 00:00 07/02/2022 shouldn't be in there.
last_update_time?