seconds_add
description
Syntax
DATETIME SECONDS_ADD(DATETIME expr1,INT expr2)
Add a specified time interval to the date. Unit is second.
The expr1 parameter is a valid datetime expression.
The expr2 parameter is the seconds you want to add.
example
select seconds_add('2010-11-30 23:50:50', 2);
+---------------------------------------+
| seconds_add('2010-11-30 23:50:50', 2) |
+---------------------------------------+
| 2010-11-30 23:50:52 |
+---------------------------------------+
select seconds_add('2010-11-30', 2);
+------------------------------+
| seconds_add('2010-11-30', 2) |
+------------------------------+
| 2010-11-30 00:00:02 |
+------------------------------+
keyword
SECONDS_ADD,ADD