I am new to Hive and got an error when I tried to create a partitioned table.
here is my script:
CREATE TABLE partitionedemp(emp_no int, birth_date string, first_name string, last_name string) Partitioned By(gender string, hire_date string) stored as sequencefile;
I got an error below:
bash: syntax error near unexpected token `('
What's wrong with my script? Thank you very much.