1 --传统统计条数
 2 select count(*) from [表名]
 3  
 4 -- 高效统计
 5 --说明:
 6 -- 1.注意观察last_analyzed列的日期
 7 -- 2.统计前请在Command下执行以下语句
 8 -- exec dbms_stats.gather_table_stats('[用户名]','[表名]',cascade=>true);
 9 
10 select * from tabs t where t.table_name='[表名]'

相关文章:

  • 2021-06-26
  • 2021-11-22
  • 2021-12-03
  • 2022-02-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-02
  • 2021-12-23
  • 2021-05-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案