Pentaho

时间:2015-09-24 21:02:34

标签: mysql pentaho

我正在使用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声明为数字,选择类型为文本框。我尝试更改数据类型和选择类型但没有用。

0 个答案:

没有答案