table_help
该命令指导您如何以及如何使用表引用的命令。下面给出的是使用此命令的语法。
hbase(main):02:0> table_help
使用此命令时,它将显示与表相关的命令的帮助主题。下面给出的是此命令的部分输出。
Help for table-reference commands.
You can either create a table via 'create' and then manipulate the table via commands like 'put', 'get', etc.
See the standard help information for how to use each of these commands.
However, as of 0.96, you can also get a reference to a table, on which you can invoke commands.
For instance, you can get create a table and keep around a reference to it via:
hbase> t = create 't', 'cf'…...