Ejecuté la siguiente consulta. Funciona correctamente. Puedes comprobarlo.
SELECT
( SELECT count(*) from table1 where.... )
+ ( SELECT count(*) from table2 where.... )
as total from dual
Ejecuté la siguiente consulta. Funciona correctamente. Puedes comprobarlo.
SELECT
( SELECT count(*) from table1 where.... )
+ ( SELECT count(*) from table2 where.... )
as total from dual