First thing we need to learn in HBase is how to create a table .The CREATE command is used by us to create a table as we do in traditional databases.
Basic Syntax For Creating Table
create 'table_name' ,'column_family_name'
Example :- Let us create a sample table player with column family as football and cricket.
We can see the table by using the list command .
This is the most simplest way by which we can create a table .
Basic Syntax For Creating Table
create 'table_name' ,'column_family_name'
Example :- Let us create a sample table player with column family as football and cricket.
We can see the table by using the list command .
This is the most simplest way by which we can create a table .
No comments:
Post a Comment