make_datetime
The make_datetime
function converts the specified date and time into a datetime
value (Unix time in
seconds).
To convert
datetime
(Unix time) into astring
, or vice versa, use thestrftime
andstrptime
functions.
Syntax
make_datetime( Year, Month, Day [, Hour] [, Minute] [, Second])
Arguments
- Year: year (an integer value, from 0 to 9999)
- Month: month (an integer value, from 1 to 12)
- Day: day (an integer value, from 1 to 28–31)
- Hour: hour (an integer value, from 0 to 23)
- Minute: minute (an integer value, from 0 to 59)
- Second: second (a real value, from 0 to 59.9999999)
Returns
If creation is successful, result will be a datetime
value; otherwise, the result will be null
.
Example
year_month_day = make_datetime(2017,10,0)
returns as 1506729600
.