语法:export table 表名 to '输出路径';
例子:export table cloud.customer to '/tmp/hive/customer';
$ beeline
语法:beeline> !connect jdbc:hive2://主机名:10000 用户名 密码
例子:beeline> !connect jdbc:hive2://192.168.9.87:10000 hadoop hadoop!QWE
语法:CAST(String字段 AS DOUBLE)
例子:CAST(t1.QUERY_TIME AS DOUBLE)
语法:load data inpath '数据源' into table 表名 partition(分区表字段='分区表名称');
例子:load data inpath '/datas/ods/hivedb/error-log/' into table hivedb.ERROR_LOG partition(ERROR_PDATE='2018');
语法:-e <quoted-query-string> 执行所指定查询字符串,并退出
例子:hive -e 'show databases;'
语法:-f <filename> 执行指定的文件中内容并退出
例子:hive -f test.sql
语法:hive -e ‘查询字符串’ > 输出路径
例子:hive -e 'select * from hivedb.test' > ~/test.csv;
语法:ALTER TABLE 表名 DROP IF EXISTS PARTITION(分区名称)
例子:ALTER TABLE error_log DROP IF EXISTS PARTITION(logdate=20180822);
语法:desc formatted 表名
例子:desc formatted SNDG_CM_SUBS_PRODATTR_NEW_ADDLOG;
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://volitation.blog.csdn.net/article/details/81945498
内容来源于网络,如有侵权,请联系作者删除!