17,140
社区成员




select 字段列表 from (
select t.*,'201009' table_month from table201009 t
union all
select t1.*,'201010' table_month from table201010 t1
union all
select t2.*,'201011' table_month from table201011 t2)
where table_month=to_char(sysdate,'yyyymm')