描述:
查询Hive数据库。
语法:
hive_query(con,sql)
备注:
外部库函数,外部库的使用请参考《外部库使用指南》。
在数据库中查询指定的sql,返回sql的查询结果所组成的序表。
参数:
con |
数据库连接串。 |
sql |
需要查询的sql语句,如select * from table。 |
返回值:
序表
示例:
|
A |
|
1 |
=hive_open("hdfs://192.168.0.8:9000","thrift://192.168.0.8:9083","hive","asus") |
连接hive数据库。 |
2 |
=hive_query(A1, "select * from table") |
查询table表数据。 |
3 |
=hive_close(A1) |
|
相关概念: