Saved Bookmarks
| 1. |
List and define the three components that make up a database |
|
Answer» A basic database is a single table with rows for the data and columns that DEFINE the data ELEMENTS. So a bare bones example would be an excel spread sheet. A more complex database would involve multiple tables connected to each other with one or more rules of RDBMS. To SUM it up a complex database has the following componenets: Tables Indexes Views Stored Procedures Triggers The data can be extracted using Query LANGUAGES and are specific to the technology being USED. |
|