My Oracle table "sav" structure is
order_entry_dat e ---- date
order_entry_tim e ---- varchar2(10)
select to_date(order_e ntry_date||' '||order_entry_ time, 'DD-Mon-YY HH12:MI am') as dates
from sav;
Result:
DATES
---------
01-JAN-07
01-JAN-07
01-JAN-07
01-JAN-07
I did not get Time..
i do not know what is the reason for it..
Anybody can help me.. plz...
order_entry_dat e ---- date
order_entry_tim e ---- varchar2(10)
select to_date(order_e ntry_date||' '||order_entry_ time, 'DD-Mon-YY HH12:MI am') as dates
from sav;
Result:
DATES
---------
01-JAN-07
01-JAN-07
01-JAN-07
01-JAN-07
I did not get Time..
i do not know what is the reason for it..
Anybody can help me.. plz...
Comment