Query Details

Hour Minute

Query

//Convert time into hour or min

print TimeTaken=time(10:11:02)
| extend TimeTakenInMins = TimeTaken / 1m

Explanation

The query is converting a given time into hours or minutes. It prints the original time and then calculates the time taken in minutes by dividing the original time by 1 minute.

Details

Rod Trent profile picture

Rod Trent

Released: August 9, 2021

Tables

print

Keywords

Time,hour,min

Operators

printtimeextend/1m

Actions