InterviewSolution
Saved Bookmarks
| 1. |
In MySQL databases, the structure representing the organizational views of the entire databases is ____________(a) Schema(b) View(c) Instance(d) TableI got this question by my school teacher while I was bunking the class.This question is from Basic Database Terminology topic in division General MySQL Use of MySQL |
|
Answer» CORRECT option is (a) Schema Explanation: The schema in a database gives a BLUEPRINT of the structure. A VIEW is an OBJECT that can be generated with a query. A table is a COLLECTION of records. An instance is analogous to a class object. |
|