InterviewSolution
Saved Bookmarks
| 1. |
What is meant by a database? |
|
Answer» A Database is an organized, consistent, and logical collection of DATA that can easily be updated, accessed, and managed. Database mostly contains sets of tables or objects (anything created using create command is a database object) which consist of RECORDS and fields. A tuple or a row represents a single entry in a table. An ATTRIBUTE or a column represents the basic units of data storage, which contain information about a particular aspect of the table. DBMS extracts data from a database in the form of queries GIVEN by the user. |
|