原创

查询表字段

select count(column_name) from user_tab_columns where table_name='ISC_USER';
select count(*) from user_tab_columns where table_name='ISC_USER';
select t.TABLE_NAME,count(*) from user_tab_columns t  group by t.TABLE_NAME;

正文到此结束
本文目录