Description | The |
Syntax | DATETIME( |
Output | datetime |
Variables
year
: The numeric value representing the year (e.g., 2023).month
: The numeric value representing the month (1 for January, 2 for February, and so on).day
: The numeric value representing the day of the month.hour
: The numeric value representing the hour (0-23).minute
: The numeric value representing the minute (0-59).second
: The numeric value representing the second (0-59).
Example
DATETIME(`Year`, `Month`, `Day`, `Hour`, `Minute`, `Second`)
Event | Year | Month | Day | Hour | Minute | Second | DATETIME |
Event A | 2023 | 9 | 15 | 10 | 30 | 45 | 2023-09-15T10:30:45.000 |
Event B | 2023 | 8 | 25 | 14 | 15 | 0 | 2023-08-25T14:15:00.000 |
Event C | 2023 | 9 | 1 | 9 | 0 | 20 | 2023-09-01T09:00:20.000 |