原创

查询表字段

温馨提示:
本文最后更新于 2016年05月25日,已超过 3,263 天没有更新。若文章内的图片失效(无法正常加载),请留言反馈或直接联系我

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;

正文到此结束
本文目录