Use TO_char() function , to get mont , day and year
for example :
select to_char(sysdate,'MM') from dual;
return month in number
select to_char(sysdate,'Month') from dual;
return month in Word
select to_char(sysdate,'yyyy') from dual;
return Year or date
select to_char(sysdate,'dd') from...