| 1 |
let dt = datetime(2017-01-29 09:00:05); |
| 2 |
print |
| 3 |
v1=format_datetime(dt,'yy-MM-dd [HH:mm:ss]'), |
| 4 |
v2=format_datetime(dt, 'yyyy-M-dd [H:mm:ss]'), |
| 5 |
v3=format_datetime(dt, 'yy-MM-dd [hh:mm:ss tt]') |
| 6 |
|
| 7 |
// From https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/ |
| 8 |
|