使用apache drill插入postgres表

时间:2017-02-07 05:11:50

标签: apache-drill

是否可以使用类似于

的apache drill.something将数据插入postgres数据库中的现有表中

插入Post_db.test_schema.customer_account_holder_test,从hive.schema_name.customer_account_holder限制10中选择customer_id,source_system_id,salutation,first_name,middle_name,last_name,legal_name,gender,identity_proof_name,identity_proof_value

1 个答案:

答案 0 :(得分:1)

在apache钻取中,不支持Insert。 您可以创建一个新表,并使用SELECT查询返回的行填充新表。使用CREATE TABLE AS(CTAS)语句代替INSERT INTO。 CREATE TABLE name AS query;