Home
Explore
Exams
Search for anything
Login
Get started
Home
Part 2 of CS347
Part 2 of CS347
0.0
(0)
Rate it
Studied by 0 people
View linked note
Knowt Play
Learn
Practice Test
Spaced Repetition
Match
Flashcards
Card Sorting
1/14
There's no tags or description
Looks like no tags are added yet.
Study Analytics
All Modes
Learn
Practice Test
Matching
Spaced Repetition
Name
Mastery
Learn
Test
Matching
Spaced
No study sessions yet.
15 Terms
View all (15)
Star these 15
1
New cards
Exclusive Subtypes
An entity must belong to only one subtype, represented with disjoint constraints.
2
New cards
Inclusive Subtypes
An entity can belong to multiple subtypes, represented with overlapping constraints.
3
New cards
Discriminator Attribute
Used to determine which subtype an entity belongs to, e.g., 'Person_Type' in a 'Person' table.
4
New cards
Intersection Table
Used to resolve many-to-many relationships by creating two 1:M relationships.
5
New cards
Many-to-Many Relationship
A relationship where multiple entities in one table can relate to multiple entities in another table.
6
New cards
Denormalization
The process of combining normalized tables into a single table for performance optimization.
7
New cards
SQL Trigger
An automated database action executed when a specified event occurs.
8
New cards
View
A virtual table derived from a query that simplifies complex queries and enhances security.
9
New cards
Subquery
A nested query used to retrieve information from one or more tables based on values from another query.
10
New cards
Cardinality
Defines the maximum and minimum number of entities that participate in a relationship.
11
New cards
DDL (Data Definition Language)
Used to define and modify database structures like tables.
12
New cards
DML (Data Manipulation Language)
Used to manipulate data in tables, including INSERT, UPDATE, DELETE operations.
13
New cards
Normalization
The process that eliminates redundant data and reduces update anomalies.
14
New cards
JOIN
Combines rows from two or more tables based on related columns, often used for query optimization.
15
New cards
Bridge Table
Another term for junction tables that facilitate many-to-many relationships in databases.