Fetching rows in DB2

前端 未结 2 551
旧巷少年郎
旧巷少年郎 2021-02-04 06:56

I know in DB2 (using version 9.7) I can select the first 10 rows of a table by using this query:

SELECT * 
FROM myTable
ORDER BY id
FETCH FIRST 10 ROWS ONLY
         


        
2条回答
  •  不知归路
    2021-02-04 07:44

    You can also use the MYSQL compatibility. You just need to activate the vector compatibility for MYS, and then use Limit and Offset in your queries.

    db2set DB2_COMPATIBILITY_VECTOR=MYS
    db2stop
    db2start
    
    • An excellent article written by DB2 experts from IBM https://www.ibm.com/developerworks/mydeveloperworks/blogs/SQLTips4DB2LUW/entry/limit_offset?lang=en
    • Compatibility vector in InfoCenter http://publib.boulder.ibm.com/infocenter/db2luw/v10r1/topic/com.ibm.db2.luw.apdv.porting.doc/doc/r0052867.html
    • A blog about this http://victorsergienko.com/db2-supports-limit-and-offset/

提交回复
热议问题