select count(0) from 
gl_bal_1_2007 subpartition(p03_sp5) 
where period_year = '2007' AND period_num = '6' 
and branch_code  in (
    select ccb_branch_code from pb_branch b, gl_branch g 
    where b.ccb_branch_code = g.branch_code and
    g.branch_level = 3 and    
    is_one_send = '0'
) and subject_code in (
  select subject_code from pb_form_subject where biz_code = form_code
);这是查询1个分区的SQL
表"gl_bal_1_2007"有3个分区p012,p03,p04,每个分区又各有12个子分区,分别是sp1,sp2,……sp12。
现在我想同时查询p012_sp5和p03_sp5上的2个分区,请问这个SQL该怎么写呢?