相关考题
-
单项选择题
现有一张分区表,impala中哪种操作是错误的。()
A.alter table stu_par add partition (month=’999901’);
B.load data inpath ’/student.txt’ into table stu_par partition(month=’888801’);
C.insert into table stu_par partition (month = ’777701’) select * from student;
D.select * from stu_par where month = ’777701’; -
单项选择题
impala不支持哪种数据类型。()
A.INT
B.FLOAT
C.BINARY
D.STRINT -
单项选择题
下列impala的哪种用法是正确的。()
A.impala-shell -i //查看impala的版本
B.impala-shell -q ’select * from student’ -o output.txt //将查询结果写入文件中
C.impala-shell -q ’select * from student’ -f output.txt //将查询结果写入文件中
D.impala-shell -p bigdata111 //指定连接运行 impalad 守护进程的主机
