他のテーブルの行数を含む結果テーブルを作成することになっていますが、結果テーブルは単純です
Create Table result(name varchar2(20), row_table1 number, row_table2 number );
しかし、使用して挿入すると
insert into result values('test', count(*) from table1, count(*) from table2);
エラーグループ関数はここでは許可されていません....
他の解決策はありますか