3,494
社区成员




1、查询某一个表的行数
select count(*) from 你的表名
2、查询某一个表的列数
select count(*) from user_tab_columns where table_name=upper('你的表名')
3、同时查询某一个表的行数和列数
select count(*) from 你的表名
union
select count(*) from user_tab_columns where table_name=upper('你的表名')