Feb 18, 2002 #1 specv Programmer Aug 8, 2001 42 CA I work with oracle sqlplus. What i want is add minutes on a date field. Is it possible? Thanks Phil
Feb 18, 2002 #2 carp MIS Sep 16, 1999 2,622 US Absolutely: SELECT old_date + desired_number_of_minutes/(24*60) new_date FROM my_table; It will be faster if you do the math up front to get SELECT old_date + desired_number_of_minutes/1440 new_date FROM my_table; Upvote 0 Downvote
Absolutely: SELECT old_date + desired_number_of_minutes/(24*60) new_date FROM my_table; It will be faster if you do the math up front to get SELECT old_date + desired_number_of_minutes/1440 new_date FROM my_table;