1.创建一个test1表,并且有一个info列族
create 'test1' ,'info'
2.查看所有表
list
3.查看表详情
desc 'test1'
4.插入数据
put 'test1','001','info:name','zhangsan'
5.根据rowKey查询某个记录
get 'test1','001'
6.查询所有记录
scan 'test1'
7.统计表记录数
count 'test1'
8.删除
#删除列
delete 'test1','000','info:age'
#指定rowkey删除
deleteall 'test1','001'
#删除表中所有数据
truncate 'test1'
9.禁用表
disable 'test1'
10.启用表
enable 'test1'
11.测试表是否存在
exists 'test1'
12.删除表
#删除之前需要disable
disable 'test1'
drop 'test1'