您可以同时将文件和值加载到配置单元中吗

Can you load a file and value into hive at the same time

是否可以在 hive 中同时加载文件和插入值?

我有一个简单的table团队:

team_id        int
fname          string
lname          string
new_record     string

我的加载文件看起来像:

ID,fname,lname
1,Jimmy,Hendrix
2,bob,marley
3,Richard,sherman
4,Bracia,grimm

我想添加 'yes' 如果在文件加载过程中添加了新的团队成员,这可能吗??
如果是这样,我将如何编写查询?感谢 Frostie

这是不可能的。
但是可以从现有的 table 加载并同时插入。 所以我通过使用 select 并插入

来解决这个问题