InterviewSolution
Saved Bookmarks
| 1. |
List the components that make up a database (or) parts of the database? |
|
Answer» The three major parts that forms a database are Tables, Queries and Views. 1. Tables – similar to an excel sheet, containing multiple rows and columns. Where each row is a record and each column is an attribute. 2. Queries – It is a question with multiple conditions posted to the database. The records in the database that satisfies the passed conditions are retrieved. 3. Views -A set of stored queries. |
|