hbase,shell操作表

 1 hbase,shell操作表:  bin/hbase  shell ,  list
 2 创建表: create ‘表名‘,‘列组名‘   例:create‘student‘,‘info‘
 3 查看表:desc ‘student‘(表名)
 4 
 5 表中添加数据:  例如:
 6 第1条数据:行键值为“U001”,info:name值为“Alex”,data:salary值为15000;
 7 第2条数据:行键值为“U002”,info:name值为“Rose”,data:salary值为1000;
 8 第3条数据:行键值为“U003”,info:name值为“Jack”,data:salary值为25000;
 9 put ‘employee‘,‘U001‘,‘info:name‘,‘Alex‘
10 put ‘employee‘,‘U001‘,‘data:salary‘,‘15000‘
11 put ‘employee‘,‘U002‘,‘info:name‘,‘Rose‘
12 put ‘employee‘,‘U002‘,‘data:salary‘,‘1000‘
13 put ‘employee‘,‘U003‘,‘info:name‘,‘Jack‘
14 put ‘employee‘,‘U003‘,‘data:salary‘,‘25000‘
15 
16 查询employee表中行键值为“U003”的数据;  employee为表名
17 get ‘employee‘,‘U003‘
18 删除employee表中行键值为“U001”的数据;   employee为表名
19 deleteall ‘employee‘, ‘U001‘
20 查询employee表中所有数据。               employee为表名
21 scan ‘employee‘
22 
23 VERSIONS版本修改设置:alter‘student(表名)‘,{NAME =>‘info‘,VERSIONS=>5}  查看版本desc ‘student‘(表名)
24 改列组,增加列组:alter‘student‘,‘msg‘ (表示student列组后面增加msg列组)
25 删除列组:alter‘student‘,{NAME =>‘msg‘,METHOD =>‘delete‘}
26 删除表:先disable ‘student‘ 接着删除表 drop ‘student‘   查看list
27 往表里面加数据:

 

hbase,shell操作表

上一篇:vim与系统剪贴版的交互


下一篇:shell变量的截取总结