So, I need to update some dates in the Oracle database, this is a datetime field, but I want the date to be updated and leave the time as is ... There the query looks something like this:
update table SET field = to_date('07312010','MMDDYY');
But it cancels the hours, minutes and seconds from the field, I want to update the date, but I want the hour to remain the same, any thoughts?
sql oracle plsql
Gotjosh
source share