One Pager Cheat Sheet
- Databases are
essentialfor modern living, making dataaccessible and efficientto use with the traditional relational database model and its use of `structured query language (SQL).** - The
relational database modelrelies on Entities, their Attributes, Value Sets, Key Attributes and the different types of Relations between them. - Entities are
real world objectsdescribed as sets ofattributes, that have associatedvaluesandkey attributesused for identification and facilitate datarepresentation, organization and retrieval. - The Relational Data Model uses tables to represent data, consists of relation schemas and constraints, and allows entities to be joined by outer keys.
- The key constraints, entity integrity constraints, and referential constraints help to maintain the accuracy and integrity of the data in the relational schema.
- Relational algebra is a theory that uses algebraic structures with well-founded semantics to model data, define queries and apply operations such as projection, selection, product, renaming, union, intersection and difference to manipulate relations.
- The union of two relations
RandSwill include elements from both R and S, making this statement false. - Joining creates a new relation containing
elementsof both R and S.

