TIMESTAMP(expr), TIMESTAMP(expr1,expr2)
With a single argument, this function returns the date or datetime expression expr
as a datetime value. With two arguments, it adds the time expression expr2
to the date or datetime expression expr1
and returns the result as a datetime value.
SELECT TIMESTAMP('2003-12-31'); +-------------------------+ | TIMESTAMP('2003-12-31') | +-------------------------+ | 2003-12-31 00:00:00 | +-------------------------+ SELECT TIMESTAMP('2003-12-31 12:00:00','6:30:00'); +--------------------------------------------+ | TIMESTAMP('2003-12-31 12:00:00','6:30:00') | +--------------------------------------------+ | 2003-12-31 18:30:00 | +--------------------------------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/timestamp-function/