1.行键过滤器
scan ‘Student’,FILTER=“RowFilter(=,‘substring:0001’)”
substring不支持大于或小于运算符
scan ‘Student’,FILTER=>“RowFilter(>,‘binary:0001’)”
binary 支持=
其他行键过滤器
ProfixFilter 行键前缀比较器
scan ‘Student’,FILTER=>“ProfixFilter(‘0001’)”
同
scan ‘Student’,FILTER=>“RowFilter(=,‘substring:0001’)”
KeyOnlyFilter 过滤键,不显示值
scan ‘Student’,FILTER=>“KeyOnlyFilter()”
FirstKeyOnlyFilter 显示相同键的第一个单元格,显示键值对
scan ‘Student’,FILTER=>“FirstKeyOnlyFilter()”
InclusiveStopFilter 替代ENDROW返回终止条件
scan ‘Student’,{STARTROW=>‘0001’,FILTER=>“InclusiveStopFilter()”}
同
scan ‘Student’,{STARTROW=>‘0001’,ENDROW=>‘0003’}