描述:
多路游标归并转成n路游标。
语法:
mcs.cursor(n)
备注:
多路游标归并转成n路游标,n比原来的路数小,缺省转成单路游标。
参数:
mcs |
多路游标。 |
n |
列名。 |
返回值:
单路游标/多路游标
示例:
|
A |
|
1 |
=demo.query("select * from EMPLOYEE").cursor@m(5) |
返回多路游标,路数为5。 |
2 |
=A1.cursor(3) |
将多路游标归并转成3路游标。 |
3 |
=A2.cursor() |
将多路游标转为单路游标。 |