Hive table creation
Create table for import data with fields with CSVhive> create table Account(id int,name string,phone string) row format delimited fields terminated by ',';
Create table for secured account where PI column would be masked
hive> create table Accountmasked(id int,name string,phone string) row format delimited fields terminated by ',';
Create contact table
hive> create table contact(id int,accountid int,firstname string,lastName string, phone string,email string) row format delimited fields terminated by ',';