Nov 6, 2025
| Term | Definition |
|---|---|
| Data | Raw facts with no meaning by themselves. |
| Information | Processed data allowing decisions. |
| Database | Organized electronic collection of data. |
| DBMS | Database management software (Create, Modify, Delete). |
| Entity | Real object whose information is stored. |
| Attribute | Characteristics or properties of entity. |
| Table | Collection of rows and columns. |
| Field/Column | Smallest unit holding same type data. |
| Record/Row/Tuple | Collection of many fields; data of one entity. |
| Primary Key | Unique, non-null identifier column/set. |
| Foreign Key | Reference to primary key of another table. |
| Super Key | Any set of fields uniquely identifying records. |
| Candidate Key | Minimal super key sufficient for unique ID. |
| Alternate Key | Candidate key not chosen as primary. |
| Composite Key | Primary key with more than one column. |
| Referential Integrity | FK values exist in master; inconsistencies prevented. |