Friday, May 11, 2018

HBase - Create Table

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 .

No comments:

Post a Comment

Hadoop - What is a Job in Hadoop ?

In the field of computer science , a job just means a piece of program and the same rule applies to the Hadoop ecosystem as wel...