InterviewSolution
Saved Bookmarks
| 1. |
_________ will overwrite any existing data in the table or partition.(a) INSERT WRITE(b) INSERT OVERWRITE(c) INSERT INTO(d) None of the mentioned |
|
Answer» Right answer is (c) INSERT INTO To elaborate: INSERT INTO will append to the table or partition, keeping the existing data intact. |
|