3.7、提取当前位置后的第x行

  1. postgres=# FETCH ABSOLUTE 1 from tbase_cur ;
  2. id | nickname
  3. ----+-------------
  4. 1 | hello TBase
  5. (1 row)
  6. postgres=# FETCH RELATIVE 2 from tbase_cur ;
  7. id | nickname
  8. ----+-----------
  9. 3 | TBase
  10. (1 row)
  11. postgres=# FETCH RELATIVE 2 from tbase_cur ;
  12. id | nickname
  13. ----+------------
  14. 5 | TBase swap
  15. (1 row)

每提取一次数据,游标的位置都是会前行