InterviewSolution
Saved Bookmarks
| 1. |
What cannot be done on a view?(a) display(b) filter(c) index(d) drop |
|
Answer» Right answer is (c) index For explanation I would say: In MySQL, ‘Views’ act as virtual tables. It is not possible to create indexes on a view. However, they can be used for the views that are processed using the merge algorithm. |
|