我有一个查询:
for each a where ...,
each b where ...,
each c where ...,
break by c.xxx by c.yyy by c.zzz.
我需要休息时间根据用户输入而变化。
当我尝试定义查询时:
def query qa for a, b, c.
if ... then open qa for each a... (as above)
那么它不会编译,因为:
BREAK requires query be defined SCROLLING. (14283)
如何为“break by”设置变量?