InterviewSolution
Saved Bookmarks
| 1. |
Explain What Is View In Sqlite? |
|
Answer» In SQLite, a VIEW is actually a composition of a table in the form of pre-defined SQLite QUERY. A view can consist of all rows of a table or SELECTED rows from ONE or more TABLES. In SQLite, a view is actually a composition of a table in the form of pre-defined SQLite Query. A view can consist of all rows of a table or selected rows from one or more tables. |
|