DB2 怎么实现SQL2000的 TOP 功能
------解决方案--------------------------------------------------------
fetch first n rows only
------解决方案--------------------------------------------------------
select * from ... where ... fetch first n rows only
------解决方案--------------------------------------------------------
select * from tab_name where expression fetch first n rows only
------解决方案--------------------------------------------------------
fetch first n rows only