How to update DTYPE_UTCDATETIME field in database
I want to update a DTYPE_UTCDATETIME using below SQL:
update table set END_DT = START_DT + interval '13' HOUR where row_id='XXXXX';
I also tryied below TO_DATE SQL as well.
END_DT = to_date('2024-09-06 22:00:00','yyyy-mm-dd hh24:mi:ss')
But the time is not correct in page.