查看当前分区

select t.partition_name,t.num_rows from all_tab_partitions t where table_name='table_name'

单个分区 

select count(*) as 记录数 from 表名 partition(分区名) ;

 

多个分区 (这个没有好的方法查询)

select * from  T_FQ_TEST PARTITION (PART_01)
union all
select * from T_FQ_TEST PARTITION (PART_02);

相关文章:

  • 2022-12-23
  • 2022-01-25
  • 2022-12-23
  • 2021-05-30
  • 2022-12-23
  • 2022-12-23
  • 2022-01-03
  • 2021-07-17
猜你喜欢
  • 2021-09-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-26
  • 2021-11-20
  • 2021-12-15
  • 2021-05-20
相关资源
相似解决方案