如何在pentaho报表设计器PRD 5.3中创建动态sql查询?

时间:2015-04-25 11:16:14

标签: postgresql pentaho pentaho-cde pentaho-design-studio pentaho-ctools

我正在使用petaho报告设计器

我的主要问题是

select create_date  , sum(product_uos_qty) from sale_order_line group
by create_date

运行正常

和子查询是

SELECT column_name
FROM information_schema.columns
WHERE table_schema='public' 
 AND table_name='sale_order_line' 
 AND (column_name = 'product_uos_qty' OR column_name ='price_unit')

此查询的输出是

product_uos_qty
price_unit

我创建了一个参数选择

并将主要查询转换为此

select create_date  , sum(${select}) from sale_order_line group by create_date

但它没有运行它会产生以下错误

  

错误:查询“main”未成功执行。给出的理由   是:   “org.pentaho.reporting.engine.classic.core.ReportDataFactoryException:   查询失败:从中选择create_date,sum($ {select})   sales_order_line group by create_date'

告诉我主要问题是什么以及如何解决它

0 个答案:

没有答案