CompTIA Data+ Exam DA0-001 - Lesson 1 Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/18

flashcard set

Earn XP

Description and Tags

Flashcards covering basic concepts of data, relational vs. non-relational databases, tables, primary keys, normalization, and relationships.

Last updated 10:40 AM on 5/29/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Relational Database Management System (RDBMS)

Software that maintains relational databases.

2
New cards

Relational Databases

Use tables to store data that is captured.

3
New cards

Tables

Created with fields (field names); each row is a record, and each column has a data type.

4
New cards

SQL (Structured Query Language)

The language used to query and manage data in a relational database.

5
New cards

Non-Relational Databases (NoSQL)

Any alternative to a relational SQL database.

6
New cards

Non-Relational Databases Use

Used for web-based databases to handle large amounts of traffic and data; easier to scale for web applications.

7
New cards

Four Basic Categories of NoSQL Databases

Document-oriented databases, Key-value stores, Column-oriented databases, Graph stores.

8
New cards

Normalization

Structuring data for optimal storage and use within a program.

9
New cards

First Normal Form (1NF)

Eliminates redundant information in individual tables; each set of related data is stored in a dedicated table, with a primary key assigned.

10
New cards

Second Normal Form (2NF)

Related information applicable to multiple tables will have its own table and be associated through a foreign key.

11
New cards

Third Normal Form (3NF)

Eliminates fields that do not depend on a key; most designs do not go to the 3NF.

12
New cards

Primary Key

A key used to uniquely identify a record in a table.

13
New cards

Foreign Key

A primary key used in another table to refer to the record; establishes a relationship between tables.

14
New cards

One-to-One Relationship

A relationship where one record in a table is related to one record in another table.

15
New cards

One-to-Many Relationship

A relationship where one record in a table can be related to many records in another table.

16
New cards

Many-to-Many Relationship

A relationship where many records in one table can be related to many records in another table.

17
New cards

Referential Integrity

Ensures that the foreign key has a corresponding primary key in the related table.

18
New cards

Cascade Update

When a primary key is changed and cascade update is enforced, the primary key will change in all other related tables.

19
New cards

Cascade Delete

When a primary key record is deleted and cascade delete is enforced, all related records in other tables will be automatically deleted.