TIMESTAMP FUNCTION
Syntax
TIMESTAMP(expr), TIMESTAMP(expr1,expr2)
Description
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.
Examples
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 | +--------------------------------------------+
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.
© 2021 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/timestamp-function/