Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

oracle convert int to date

select to_date(20150302,'yyyymmdd') from dual;

or

select to_char(to_date(20150302,'yyyymmdd'),'mm/dd/yyyy') from dual;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #oracle #convert #int #date
ADD COMMENT
Topic
Name
2+1 =