hbase的查询是不是只能查询出值不为空的字段,如果不是怎么做
所有字段都可以查询,如果需要处理可以使用ifnull转换,如:
select ifnull(username,'替换值') from 表名
hbase可以查询空值 ,使用 NullComparator ,具体可参考这篇文章