Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL query( count(*)) から返される行は 1 つだけですが、パッケージを実行すると、上記のエラーが表示され、パッケージが失敗します。
count(*)
結果の型を「単一行」にし、query( select count(*) as 'result' from abc.tbl_nm) の出力を Int32 型の変数にマップしました。
select count(*) as 'result' from abc.tbl_nm
「結果セット」をマッピングするときは、「結果名」を「0」に、「変数名」を使用している変数に設定します。