用hbase shell创建成绩表
时间: 2024-05-09 08:15:22 浏览: 121
shell成绩管理系统
可以按照以下步骤在 HBase Shell 中创建成绩表:
1. 启动 HBase Shell
2. 创建表:
```
create 'score', 'info'
```
这将创建一个名为“score”的表,其中包含一个名为“info”的列族。
3. 插入数据:
```
put 'score', '1001', 'info:name', '张三'
put 'score', '1001', 'info:math', '90'
put 'score', '1001', 'info:english', '85'
put 'score', '1002', 'info:name', '李四'
put 'score', '1002', 'info:math', '95'
put 'score', '1002', 'info:english', '92'
```
这将在表“score”中插入两个学生的成绩数据。每个学生的成绩数据都包含姓名、数学成绩和英语成绩。
4. 查询数据:
```
get 'score', '1001'
```
这将返回学号为“1001”的学生的所有成绩数据。
5. 删除数据:
```
delete 'score', '1002', 'info:english'
```
这将删除学号为“1002”的学生的英语成绩。
6. 删除表:
```
disable 'score'
drop 'score'
```
这将禁用并删除表“score”。
阅读全文