Database Modeling and Database Systems

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/21

flashcard set

Earn XP

Description and Tags

These flashcards cover essential terms and definitions related to database modeling, management systems, and SQL.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Database Management System (DBMS)

A software system that uses a standard method of cataloging, retrieving, and running queries on data.

2
New cards

Entity Relationship Model (ERM)

A diagram that shows the relationships between data entities in a database.

3
New cards

Primary Key

An attribute or set of attributes that uniquely identifies a record in a table.

4
New cards

Foreign Key

An attribute in one table that links to the primary key in another table to establish a relationship.

5
New cards

Normalization

The process of organizing data to minimize redundancy and improve data integrity.

6
New cards

Relational Database

A database that stores data in interconnected tables using a relational model.

7
New cards

SQL (Structured Query Language)

A standard programming language used to manage and manipulate relational databases.

8
New cards

NoSQL

A type of database that provides a mechanism for storage and retrieval of data that is modeled in means other than the tabular relations used in relational databases.

9
New cards

ACID Properties

A set of properties that guarantee that database transactions are processed reliably: Atomicity, Consistency, Isolation, Durability.

10
New cards

Join

A SQL operation used to combine rows from two or more tables based on a related column.

11
New cards

Transaction

A sequence of operations performed as a single logical unit of work that must be either entirely completed or aborted.

12
New cards

NULL Value

A marker used in databases to indicate that a data value does not exist in the database.

13
New cards

Data Integrity

The accuracy and consistency of stored data.

14
New cards

Composite Key

A primary key composed of two or more columns in a table.

15
New cards

Unique Constraint

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

16
New cards

Entity Set

A collection of similar types of entities.

17
New cards

Subquery

A query nested inside another query in SQL.

18
New cards

Data Schema

The structure of a database, defined by the way data is organized and how the relations among them are handled.

19
New cards

Cardinality

The uniqueness of data values contained in a particular field (attribute) of a table.

20
New cards

Data Types

The classification of data items, specifying what type of value can be stored in a column.

21
New cards

Referential Integrity

A property that ensures that relationships between tables remain consistent.

22
New cards

Join Types

Different methods to combine rows from multiple tables, such as INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.