3.7、提取当前位置后的第x行
postgres=# FETCH ABSOLUTE 1 from tbase_cur ;
id | nickname
----+-------------
1 | hello TBase
(1 row)
postgres=# FETCH RELATIVE 2 from tbase_cur ;
id | nickname
----+-----------
3 | TBase好
(1 row)
postgres=# FETCH RELATIVE 2 from tbase_cur ;
id | nickname
----+------------
5 | TBase swap
(1 row)
每提取一次数据,游标的位置都是会前行