InterviewSolution
Saved Bookmarks
| 1. |
What is the significance of ‘IF EXISTS” clause while dropping a table? |
|
Answer» When we issue the command DROP TABLE IF EXISTS table_name Hive throws an error if the table being dropped does not exist in the first place. |
|