Chapter 3 Data Management

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

1/18

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.

19 Terms

1
New cards
In-store sales
Data on sales that occur in physical store locations.
2
New cards
Catalog content
Information about products available in catalogs.
3
New cards
Operational Database
A live database that supports real-time transactions.
4
New cards
Offline Database
A database used for reporting and analysis, separate from real-time operations.
5
New cards
SQL (Structured Query Language)
A data sublanguage designed for creating and processing database data and metadata.
6
New cards
Data Definition Language (DDL)
SQL statements used for creating database structures, such as tables and relationships.
7
New cards
Data Manipulation Language (DML)
SQL statements used for inserting, querying, modifying, and deleting data.
8
New cards
Transaction Control Language (TCL)
SQL statements used for managing transactions that execute groups of SQL operations together.
9
New cards
Data Control Language (DCL)
SQL statements for granting or revoking access permissions for users.
10
New cards
SELECT Statement
The core SQL query structure that retrieves data from a database.
11
New cards
DISTINCT keyword
Used to remove duplicate rows from the result set.
12
New cards
TOP function
Controls the number of rows returned in a query.
13
New cards
WHERE clause
A clause that filters records based on specified conditions.
14
New cards
GROUP BY clause
A clause that groups data based on specified column(s).
15
New cards
HAVING clause
A clause that filters grouped results, used with aggregate functions.
16
New cards
LIKE operator
Allows pattern matching in SQL queries.
17
New cards
Wildcard character (%)
Represents any sequence of characters in SQL queries.
18
New cards
Aggregate Functions
Functions that perform a calculation on a set of values and return a single value.
19
New cards
Difference between WHERE and HAVING
WHERE filters individual rows before grouping; HAVING filters groups after aggregation.