想像してみてください:t1 = 1 t2 = 3 t3 = 5
各テーブルで個別の選択を実行し、カウントを単一の量で報告する必要があります。
select *
from (select count(*) from t1)
+ (select count(*) from t2)
+ (select count(*) from t3);
私の最終結果は=9になるはずです
想像してみてください:t1 = 1 t2 = 3 t3 = 5
各テーブルで個別の選択を実行し、カウントを単一の量で報告する必要があります。
select *
from (select count(*) from t1)
+ (select count(*) from t2)
+ (select count(*) from t3);
私の最終結果は=9になるはずです