ぺたほレポートデザイナーを使っています
私の主なクエリは
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 を選択します。
主な問題とその解決方法を教えてください