Answers for "create hive manage table with partitions"

0

create hive manage table with partitions

CREATE TABLE IF NOT EXISTS financial.EMP
(
Ename STRING,
EmpID INT,
Salary FLOAT,
Tax MAP<STRING, FLOAT>,
Subordinates ARRAY<STRING>,
Address STRUCT<city: STRING, state: STRING, zip: INT>
)
PARTITIONED BY (country STRING, state STRING);
Posted by: Guest on March-23-2022

Browse Popular Code Answers by Language