PLSQL如何查询每张表有多少个字段

2025-04-18 16:55:38
推荐回答(1个)
回答1:

select table_name,Count(*) As 列数 from user_tab_columns Group By table_name;