select * from table1 partition(id) 
只能查询一个分区的,我现在想查询几个分区的,除了下面的写法外,还有没有其他的方式
select * from table1 partition(id)
union all
select * from table1 partition(id2)
......
select * from table1 partition(idn)