Can I update ( delete and insert kind of)just one row keeping the remaining 
rows intact in Hive table using Hive INSERT OVERWRITE. There is no partition in 
the Hive table.



INSERT OVERWRITE TABLE tablename SELECT col1,col2,col3 from tabx where 
col2='abc';

Does the above work ? Please advise.

Reply via email to