我正在使用Pentaho创建报告。当我尝试使用参数来限制行数时会引发错误。查询如下:
SELECT DISTINCT topics_dim.topicName, dictationLength, originalDate
FROM dictations
INNER JOIN topics_dim ON dictations.topicId = topics_dim.topicId
WHERE dictations.originalDate between ${StartDate} AND ${EndDate}
ORDER BY dictations.dictationLength DESC
LIMIT ${Record_limit};
我将Record_limit
声明为数字,选择类型为文本框。我尝试更改数据类型和选择类型但没有用。