怎样在db2中,使用union连表查询a表和b表,且只取b表和a表的前n条记录?

这样写可以吗? select * from a fetch n rows only union
select * from b fetch n rows only

第1个回答  2012-07-12
only不行啊
使用limit
select * from a fetch n rows limit 0,n union
select * from b fetch n rows limit 0,n
相似回答