Lecture #2 Flashcards
Explain the relational Data Model.
A collection of inter-related tables where the data in each table is organized and each table has rows representing individual records and columns representing specific data fields, esnuring structured and efficient management of data.
Another name for row or record.
Tuple
Another name for a column.
Field or Attribute
What does the Degree of the table represent?
The number of attributes in the table.
What are the basic Building blocks of Data modelling?
- Entities
- Attribute
- Relationships
- constraints
Explain Independent Entities.
Independent tables that store data, each with its own structure and typically linked through relationships defined by keys.
Explain Dependent Entities.
Refers to tables that rely on relationships with other tables to exist or function correctly.
Explain Characteristic Entities.
Tables that represent distinct attributes or properties of another entity.
What is a primary Key?
A column or set of columns in a table whose values uniquely identify each row in that table.
What is a foreign key ?
A column or a set of columns in one table that refers to the primary key in another table.