1.查詢表名 :
SELECT TABLE_NAME FROM user_all_tables ;
2.組裝統(tǒng)計SQL 語句:
1 >SELECT ‘Select '' '|| TABLE_NAME || ' '' as tableName, count(*) from ’ || TABLE_NAME || ' ; ' as exectuteSQL FROM user_all_tables ;
2> SELECT ‘Select '' '|| TABLE_NAME || ' '' as tableName, count(*) from ’ || TABLE_NAME || ' union ' as exectuteSQL FROM user_all_tables ;
3.復(fù)制組裝好的exectuteSQL 執(zhí)行
select * from ( 第二步2> 執(zhí)行的結(jié)果復(fù)制到這里 刪除最后一個 union ) 執(zhí)行
4.看查詢結(jié)果 。
更多信息請查看IT技術(shù)專欄