从表A中查出值大于40、小于80的记录,从表B中查出值小于10的记录,并将表A和表B查出的记录合并于表C中。
------解决方案--------------------------------------------------------
把a里面col between 40 and 80 union all b里面 col< 10 的记录 insert into table 就行了
------解决方案--------------------------------------------------------
create table c as select col from (
select a.col
from a
where a.col > 40
and a.col < 80
union
select b.col from b where b.col < 10
)
------解决方案--------------------------------------------------------
这么基础的问题。。。
无语。。。。。。。。
------解决方案--------------------------------------------------------
太简单了吧..LZ.