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

Delta Lake - Time Travel

  Time Travel allows you to query, restore, or compare data from a previous version of a Delta table. Delta Lake automatically keeps tra...