统计数据库所有表的字段之和

来源:互联网 发布:sql union 去重复 编辑:程序博客网 时间:2024/05/18 01:19
select table_name,(select count(*) from user_tab_columns b where b.TABLE_NAME=a.TABLE_NAME) from user_tab_columns a;
0 0
原创粉丝点击