from pyhive import hive
conn = hive.Connection(host='hadoop104',port=10000,username='baiyun' ,database='gmall')
cursor = conn.cursor()
cursor.execute('show tables')
cursor.execute('show tables')
cursor.execute('create table create_by_pyhive as select 1')
for result in cursor.fetchall():
print(result)


PyHive操作Hive示例
本文介绍了一个使用PyHive连接Hive并执行基本操作的Python脚本示例,包括显示所有表和创建一个新表。
894

被折叠的 条评论
为什么被折叠?



