make_timespan()
Learn how to use the make_timespan() function to create a timespan scalar value from the specified time period.
Creates a timespan scalar value from the specified time period.
Syntax
make_timespan(
hour, minute)
make_timespan(
hour, minute, second)
make_timespan(
day, hour, minute, second)
Parameters
Name | Type | Required | Description |
---|---|---|---|
day | int | ✔️ | The day. |
hour | int | ✔️ | The hour. A value from 0-23. |
minute | int | The minute. A value from 0-59. | |
second | real | The second. A value from 0 to 59.9999999. |
Returns
If the creation is successful, the result will be a timespan value. Otherwise, the result will be null.
Example
print ['timespan'] = make_timespan(1,12,30,55.123)
Output
timespan |
---|
1.12:30:55.1230000 |
Related content
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.