In Oracle 10g I got a problem when using DATE type in my table. I just want my DATE field store only DATE without time automatically.<
DATE
i use like this
insert : Insert into table (name_date) values(to_date(current_date,'dd/mm/yyyy')); update : update table set name_date=to_date(current_date,'dd/mm/yyyy') where id=1;
Insert into table (name_date) values(to_date(current_date,'dd/mm/yyyy'));
update table set name_date=to_date(current_date,'dd/mm/yyyy') where id=1;
that's all...