You can't directly create a parquet table. You will have to do it with Hive. Get in Hive console and load data. Refer the below example:
load data inpath '/user/edureka_212418/hive_emp/emp_details.txt' into table emp_hive;
Next, set Hive properties as follows:
SET hive.exec.compress.output=true;
SET mapred.output.compression.codec=org.apache.hadoop.io.compress.SnappyCodec;
SET mapred.output.compression.type=BLOCK;
Now you create Parquet table:
CREATE TABLE tablename STORED AS PARQUET AS SELECT * FROM emp_hive;
To know more, It's recommended to join Big Data Online Course today.