描述:
执行sql语句。
语法:
hive_execute(con,sql)
备注:
外部库函数,外部库的使用请参考《外部库使用指南》。
可执行create table、 drop table、 insert into、 insert overwrite、create view等hive sql语句。
参数:
con |
数据库连接串。 |
sql |
sql语句。 |
返回值:
Boolean值
示例:
|
A |
|
1 |
=hive_open("hdfs://192.168.0.8:9000/","thrift://192.168.0.8:9083","hive","asus") |
连接hive数据库。 |
2 |
=hive_execute(A1, "create table stu2( id string, name string,age string)") |
建表。 |
3 |
=hive_execute(A1, "drop table stu") |
删除表。 |
4 |
=hive_execute(A1, "alter table stu2 add columns (ncol string)") |
表中添加列。 |
5 |
=hive_execute(A1, "insert into stu2 values ('2','dfff','21','lll')") |
插入数据。 |
6 |
=hive_execute(A1,"insert overwrite table stu select * from stu2") |
stu2表中数据覆盖到stu表中。 |
相关概念: