InterviewSolution
Saved Bookmarks
| 1. |
What is view in MySQL? |
|
Answer» The VIEW is basically a VIRTUAL table which is USED to view certain and preferable rows or columns of the table. In practice, users can add a number of SQL functions, JOIN and WHERE clause to view the PRESENT data of the table. |
|