4.9

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Plural Attributes

Attributes that can have multiple values, necessitating the creation of a new weak table with a foreign key referencing the initial table.

2
New cards

Weak Table

A table that holds attributes that depend on another table, where composite keys are used to uniquely identify its rows.

3
New cards

Foreign Key

A column that creates a relationship between two tables, referencing the primary key of another table.

4
New cards

Primary Key Cascade

A rule that automatically deletes or updates rows in child tables when the corresponding rows in the parent table are deleted or updated.

5
New cards

Foreign Key Restrict

A rule that prevents the deletion or updating of rows in a parent table if there are corresponding rows in a child table.

6
New cards

Data Type

The format or type of data that can be stored in a given column, determined by the attribute type.

7
New cards

Required Entity

An entity that must have a corresponding record in another table, which makes the foreign key column required.

8
New cards

Singular Entity Unique Column

A column that is unique within a table, enforcing that no two rows have the same value in this column.

9
New cards

NOT NULL

A constraint that specifies that a column cannot have a NULL value, ensuring data integrity.

10
New cards

UNIQUE Constraint

A constraint that ensures all values in a column are different from each other.