SQL Midterm

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
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

Relational Database

Logically related data

2
New cards

What does SQL stand for?

Structured Query Language

3
New cards

DDL

4
New cards

DML

5
New cards

What are different words for Table?

Relation, File

6
New cards

What are different words for Column?

Attribute, Field

7
New cards

What are different words for Row?

Tuple, Record, Observation

8
New cards

Schema

9
New cards

Primary Key

unique

10
New cards

Every attribute MUST have an _______

Atomic Datatype

11
New cards

DISTINCT removes what?

Duplicates

12
New cards

Default for ORDER BY

Ascending

13
New cards

What is a Wild Card?

The * symbol

14
New cards

WHERE Clause

Filters rows BEFORE any grouping or aggregation

15
New cards

%

represents zero, one, or multiple characters

16
New cards

GROUP BY

Groups rows that share a value (USED IN AGGREGATION)

17
New cards

HAVING Clause

Filters groups AFTER aggregation (used with GROUP BY).

18
New cards

AND

requires ALL conditions to be true

19
New cards

ORDER BY

Sorts the QUERY RESULT set by one or more columns