"Rekha Das" <[EMAIL PROTECTED]> wrote:
> What time function should I use to add 2 hours to a time value I am
getting
> from the database ?

Convert the time to seconds, add 7200 seconds (2 hours), then convert back
to time format.

SELECT SEC_TO_TIME(TIME_TO_SEC(my_time_field) +7200);

--
Steve Werby
President, Befriend Internet Services LLC
http://www.befriend.com/




---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to