我如何 return 每组中除了最后一个 DolphinDB 中的所有记录?

How can I return all records in each group except the last one in DolphinDB?

我知道 limit 子句可以限制要从每个组的开头到结尾编辑的记录数 return。我怎样才能 return 除了每组中的最后一个记录之外的所有记录...提前感谢您的洞察力!!

您可以试试DolphinDB中的rowNo()功能。例如:

select * from t context by id having rowNo(id) < size(id) - 1