多个表相同结构的表,按天生成,如Table1001,Table1002, Table1003......select * from table1001 where price > 10
select * from table1002 where price > 10
select * from table1003 where price > 10是可以的,但这样的话,有几个表就存在几个结果,处理起来很麻烦。而select * from table1001, table1002, table1003 where price > 10报错。求助,怎样才能在一个语句中查询多个相同结构的表,并且把结果放在一个cursor里,看起来就象从一个表中查询出来的一样?select合并