hbase shell 基本操作命令

具体的hbase shell 命令如下表所示:

hbase shell 基本操作命令

查看hbase 的状态  :              status

查看hbase 的版本  :              version

hbase shell 基本操作命令

创建scores表:                                     create ‘scores’,‘grad’,'course'

查看当前hbase 中有哪些表:               list

查看表scores的构造:                          describe ‘scores’

使用put插入数据:                                put 'scores','xiapi','grad:','1'

                 (xiaoxue  类似)                     put 'scores','xiapi','course:chine','97'

                                                              put 'scores','xiapi','course:math','128'

                                                              put 'scores','xiapi','course:engish','85'

查看表‘scores’ 中的行‘xiapi’:              get scores','xiapi'

查看表中所有数据:                             scan 'scores'

查看表中列簇所有数据:                      scan 'scores',{COLUMNS=>'course'}

删除表中xiapi行中course列簇的math:delete 'scores','xiapi','course:math'

关闭表:                                                disable ‘scores’

删除表(删除之前必须关闭):                 drop 'scores'

上一篇:如何创建一个spring-MVC项目


下一篇:MySQL入门