InterviewSolution
Saved Bookmarks
| 1. |
A view can be deleted using the command __________(a) REMOVE(b) DELETE(c) CLEAR(d) DROP |
|
Answer» Correct choice is (d) DROP To explain I would say: In MySQL, ‘Views’ act as virtual tables. Many operations can be performed on views like the operations on tables. A view can be created, displayed and dropped. They can also be used to perform calculations. |
|