如何使用Hbase shell创建学生表(student)
时间: 2024-01-22 17:01:51 浏览: 442
10-HBase Shell命令操作1
可以按照以下步骤在HBase Shell中创建学生表(student):
1. 打开HBase Shell。
2. 输入以下命令创建表:
```
create 'student', 'info'
```
其中,'student'为表名,'info'为列族。
3. 可以使用以下命令验证表是否已创建成功:
```
list
```
这将列出HBase中的所有表,包括新创建的'student'表。
4. 可以使用以下命令查看表结构:
```
describe 'student'
```
这将列出'student'表的列族和列信息。
现在,你已经成功创建了名为'student'的表,并且可以开始向其中添加数据。
阅读全文