使用HBASE shell创建学生表(Student)并输入内容,要求学生表有两个列族
时间: 2024-03-05 10:52:41 浏览: 98
10-HBase Shell命令操作1
以下是使用 HBase shell 创建学生表 Student 并输入内容,表中包含两个列族的示例:
1. 打开 HBase shell:在命令行中输入 `hbase shell` 并回车。
2. 创建表:输入 `create 'Student', {NAME=>'info'}, {NAME=>'score'}` 并回车。此命令创建了名为 Student 的表和两个列族,分别为 info 和 score。
3. 输入数据:输入以下命令并回车,将数据插入到表中。
```
put 'Student', '1001', 'info:name', 'Alice'
put 'Student', '1001', 'info:age', '20'
put 'Student', '1001', 'score:chinese', '90'
put 'Student', '1001', 'score:math', '95'
put 'Student', '1002', 'info:name', 'Bob'
put 'Student', '1002', 'info:age', '21'
put 'Student', '1002', 'score:chinese', '80'
put 'Student', '1002', 'score:math', '85'
put 'Student', '1003', 'info:name', 'Cathy'
put 'Student', '1003', 'info:age', '22'
put 'Student', '1003', 'score:chinese', '95'
put 'Student', '1003', 'score:math', '90'
```
以上命令向表 Student 中插入了 3 条记录,每个记录包含 4 个列,分别是 info 列族中的 name 和 age,以及 score 列族中的 chinese 和 math。
4. 验证数据:输入 `scan 'Student'` 并回车,可以查看表中的所有数据。
5. 退出 HBase shell:输入 `exit` 并回车,退出 HBase shell。
这样就完成了使用 HBase shell 创建学生表并输入内容,表中包含两个列族的操作。
阅读全文