我正在使用 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
但它没有运行它给出以下错误
错误:查询“主”未成功执行。给出的原因是:'org.pentaho.reporting.engine.classic.core.ReportDataFactoryException:查询失败:select create_date,sum(${select}) from sale_order_line group by create_date'
告诉我主要问题是什么以及如何解决