SQL: Structured Query Language

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

1/9

flashcard set

Earn XP

Description and Tags

These flashcards cover key vocabulary terms and definitions related to SQL, as discussed in the lecture on database management.

Last updated 8:07 PM on 2/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

10 Terms

1
New cards

SQL

Structured Query Language, which is the language used to create, manipulate, and maintain a relational database.

2
New cards

DDL

Data Definition Language, commands that define a database, including creating, altering, and dropping tables.

3
New cards

DCL

Data Control Language, commands that control a database, including administering privileges and committing data.

4
New cards

DML

Data Manipulation Language, commands that maintain and query a database.

5
New cards

JOIN

An operation that combines data from different tables based on a related column.

6
New cards

DISTINCT

A keyword used in SQL to eliminate duplicate rows from the result set.

7
New cards

Aggregation

Operations that summarize or group data, such as COUNT, SUM, AVG, MAX, MIN, etc.

8
New cards

GROUP BY

A SQL clause that groups rows that have the same values in specified columns into aggregate data.

9
New cards

HAVING

A clause used to filter groups based on specific conditions, typically used with GROUP BY.

10
New cards

Subquery

A query nested within another query that provides data to the outer query.