-
list
: 查看数据库有哪些表 -
create '表名',‘列族’
:创建表 -
put 'table_name','rowkey','columnFamily:Qualifier','value'
: 添加数据 -
scan table_name
:查看表中所有数据 -
指定查询
scan 'student',{STARTROW => '1001', STOPROW => '1001'}
-
查看表结构
describe 'table_name'
-
更新指定字段的数据
put 'student','1001','info:age','10'
-
查看指定行 或 指定列族:列 的数据:
get 'student','1001'
和get 'student','1001','info:name'
-
统计表的行数:
count 'student'
-
删除某rowkey的全部数据
deleteall 'student', '1002'
-
删除rowkey的某一列数据
delete 'student', '1001', 'info:name'
-
清空表数据:
truncate 'student'
-
删除表数据(删除前先disable
disable 'student'
):drop 'student'
02-24
1809
11-05
888
11-06
980