hive -e ,hive -f 用法

-e 'quoted query string': 运行引号内sql查询语句 Sql from command line

-f  从文件中运行sql语句 Sql from file
 

linux环境下:

$hive -e "sql语句"  > 1.log 发现执行后会把结果写入1.log中,包括count(*)的结果

$hive -f  某个文件(里面是sql语句) > 2.log 发现执行后会把结果写入2.log中,包括count(*)的结果

$hive -f  某个文件(里面是sql语句)  执行文件里的sql,

hive -f 的某个文件的扩展名可以是.txt  .sql  .log .hql ,

欢迎关注我的公众号

 

你可能感兴趣的:(Hive)