Answers for "partition and bucketing code in hive"

0

partition and bucketing code in hive

CREATE TABLE mytable ( 
         name string,
         city string,
         employee_id int ) 
PARTITIONED BY (year STRING, month STRING, day STRING) 
CLUSTERED BY (employee_id) INTO 256 BUCKETS
Posted by: Guest on October-25-2020

Browse Popular Code Answers by Language