I have a fairly simple problem that I cannot resolve... I need to display date without time (getting rid of time by still displaying 00:00:00 won't do in my case), so solutions like
select trunc(sysdate) from dual;
select TO_DATE('20160517','YYYYMMDD') from dual;
do not really solve my problem.
What is more, my Oracle does not support covert()
or dateadd(),datediff(),getdate()
functions. Any help appreciated!
Edit: the purpose of this is to concatenate the existing date with some hard code time.