With this query: select sysdate from dual;
the result is: 27-09-2018 07:50:50
-- this UK
time
with : Select dbtimezone from dual;
output: +10:00
I want the sysdate
to be of the same timezone of dbtimezone
I was trying to do it with alter database set time_zone='AEST'
, but i'm bit confused if this is the right solution.
Any help most appreciated. Thanks.