1

我正在尝试使用 NEsper,并且我想创建自插入作为返回字段以来需要时间的语句。

例如:选择 avg((insertTime - now)) 作为 timeElapsed from Blah.win:time(1 min)

这可能吗?我可以破解获取 insertTime 但有 now 功能吗?

4

1 回答 1

1

您可以使用 current_timestamp。它以毫秒为单位返回当前时间。例如 select avg((insertTime - current_timestamp))

更多信息请参见: http: //esper.codehaus.org/esper-2.1.0/doc/reference/en/html/functionreference.html

于 2012-05-27T13:40:08.303 回答