Part 1 of CS437

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

1/20

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.

21 Terms

1
New cards
Numeric Data Types

Int, Decimal, Bit, and Float

2
New cards
String (Character) Data Types

Char, Varchar

3
New cards
Date and Time Data Types

DATE, TIME, DATETIME

4
New cards
Database Management System (DBMS)
Software that manages and controls access to databases.
5
New cards
Functions of a DBMS
Creating databases, modifying data, reading data, enforcing constraints, controlling concurrency, performing backup and recovery.
6
New cards
Inner Join
Returns only rows with matching values from both tables.
7
New cards
Outer Join
Returns all rows from one table and matching rows from another table.
8
New cards
LEFT JOIN
Includes all rows from the left table and matches from the right.
9
New cards
RIGHT JOIN
Includes all rows from the right table and matches from the left.
10
New cards
FULL JOIN
Includes all rows from both tables; MySQL does not support this natively.
11
New cards
First Normal Form (1NF)
Ensures each column contains atomic values and each row is unique.
12
New cards
Second Normal Form (2NF)
Ensures no partial dependencies on non-key attributes.
13
New cards
Third Normal Form (3NF)
Ensures no transitive dependencies between attributes.
14
New cards
Boyce-Codd Normal Form (BCNF)
Stronger than 3NF; every determinant is a candidate key.
15
New cards
Fourth Normal Form (4NF)
Addresses multivalued dependencies to minimize redundancy.
16
New cards
Fifth Normal Form (5NF)
Further reduces redundancy in relational databases.
17
New cards
Domain Integrity Constraint
Defines valid values for a column (e.g., Age should be a positive integer).
18
New cards
Referential Integrity Constraint
Ensures foreign key values reference valid primary key values.
19
New cards
NULL values in foreign keys
Allowed if relationships are optional to prevent orphan records.
20
New cards
Data Integrity Impact
Prevents orphan records and ensures relational consistency.
21
New cards

Column Data Types

Numeric, String, Date and Time, Boolean