查询当前用户下没有数据的表
select u.table_name from user_tables u where u.num_rows = 0;
查询某个用户下没有数据的表
select t.table_name from all_tables t where t.owner='用户' and t.num_rows=0;
查询当前用户下没有数据的表
select u.table_name from user_tables u where u.num_rows = 0;
查询某个用户下没有数据的表
select t.table_name from all_tables t where t.owner='用户' and t.num_rows=0;
本文标题:查找数据库中没有数据的表
本文链接:https://www.haomeiwen.com/subject/veckjxtx.html
网友评论