문제

What's wrong with below statement. I am getting error date format not recognized

select to_timestamp_tz( to_char(to_date(sysdate-1,'dd/mon/yyyy') ,'dd/mon/yyyy hh:mi:ss -05:30'),'dd/mon/yyyy hh:mi:ss TZH:TZM') from dual

please help me.

올바른 솔루션이 없습니다

다른 팁

You don't need to convert sysdate-1 to date. Its already a date. So your query should be something like:

       select to_timestamp_tz( to_char(sysdate-1 ,'dd/mon/yyyy hh:mi:ss'),'dd/mon/yyyy hh:mi:ss TZH:TZM') from dual;

Hope it helps

Vishad

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top