date format in Oracle includes both date and time. your problem is only a display one. you can either select to_char(...,'DD/MM/YYYY') or alter your session so that display is changed :
alter session set NLS_DATE_FORMAT='DD/MM/YYYY HH24:MI:SS'
for the difference between 2 dates, no problem, you'll get the result as a number in days ...
Thank you for the help.
Now, i want to know how long did the query took to execute. How do i store the begin_time and end_time and find out the difference?
Bookmarks