2.4.4 使用list命令

使用list命令查询数据库中所有表的名称。

范例如下:


    hbase(main):004:0> create 'test' ,'tt'
0 row(s) in 1.2450 seconds
=> HBase::Table - test
hbase(main):005:0> list
TABLE
student
test
2 row(s) in 0.0040 seconds
=> ["student", "test"]

命令解析:查询当前数据库中所有的表。从上面信息中可知,当前数据库中存在两个表,表名分别是student和test。