InterviewSolution
Saved Bookmarks
| 1. |
How To Create A New View In Mysql? |
|
Answer» You can CREATE a NEW view based on one or more existing TABLES by using the “CREATE VIEW viewName AS selectStatement” . You can create a new view based on one or more existing tables by using the “CREATE VIEW viewName AS selectStatement” . |
|