Loading lesson path
Concept visual
Start at both ends
Return a datetime value based on the arguments: SELECT TIMESTAMP("2017-07-23", "13:10:11");
The TIMESTAMP() function returns a datetime value based on a date or datetime value.
If there are specified two arguments with this function, it first adds the second argument to the first, and then returns a datetime value.
expression, time )
Required. A date or datetime value time Optional. A time value to add to expression
From MySQL 4.0
Return a datetime value based on the arguments:
SELECT TIMESTAMP("2017-07-23");❮ MySQL Functions