📜  确实插入覆盖sql代码示例

📅  最后修改于: 2022-03-11 15:05:03.339000             🧑  作者: Mango

代码示例1
-- INSERT OVERWRITE will overwrite any existing data in the table or partition. unless IF NOT EXISTS is provided for a partition (as of Hive 0.9. 0).
-- INSERT INTO will append to the table or partition, keeping the existing data intact. (Note: INSERT INTO syntax is only available starting in version 0.8.)