1 select * from user_tables where num_rows = 0
查询之后发现查询的不全,查询之后发现num_rows为空
select * from user_tables where nvl(num_rows,0) = 0
这样就全部查询出来了
1 select * from user_tables where num_rows = 0
查询之后发现查询的不全,查询之后发现num_rows为空
select * from user_tables where nvl(num_rows,0) = 0
这样就全部查询出来了