List and define the three components that make up a database
Answers
Answered by
1
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.
Similar questions