我正在尝试将 kusto 日期时间限制为 yyyy-MM-dd hh:mm。但是,我看到:
print todatetime((format_datetime(datetime(2015-12-14 00:03:04.12345), 'yyyy-MM-dd hh:mm')))
and
print todatetime((format_datetime(datetime(2015-12-14 12:03:04.12345), 'yyyy-MM-dd hh:mm')))
两者都返回 2015-12-14 12:03:00.0000000。我该如何解决?