次のクエリを実行しました。正しく機能しています。Uで確認できます。
SELECT
( SELECT count(*) from table1 where.... )
+ ( SELECT count(*) from table2 where.... )
as total from dual
次のクエリを実行しました。正しく機能しています。Uで確認できます。
SELECT
( SELECT count(*) from table1 where.... )
+ ( SELECT count(*) from table2 where.... )
as total from dual