Tchs final

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/41

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.

42 Terms

1
New cards

What is a group of fields related to one item in a table?

Record

2
New cards

What refers to the Primary key field used in another column?

Foreign Key

3
New cards

What is an association between entities?

Relationship

4
New cards

What is duplication of data or storing data in more than one location?

Redundancy

5
New cards

What is a structure to store multiple types of entities and their relationships?

Database

6
New cards

What is a person

place

7
New cards

What is a characteristic of an entity

also known as a column?

8
New cards

What describes a relationship between entities and attributes?

Entity-Relationship

9
New cards

What uniquely identifies a given row in a table?

Primary Key

10
New cards

Where are spreadsheets and docs stored?

Datafile

11
New cards

Which clause sorts data by column?

ORDER BY

12
New cards

What is a comparison operator?

>

13
New cards

Which operator finds unique rows?

DISTINCT

14
New cards

Which operator finds a range of values in columns?

BETWEEN

15
New cards

Which clause returns a certain number of rows?

LIMIT

16
New cards

Which clause is used for search criteria?

WHERE

17
New cards

Which operator returns true if both conditions are true?

AND

18
New cards

Which operator returns true if at least one condition is true?

OR

19
New cards

Which keyword finds patterns with the % symbol?

LIKE

20
New cards

Which operator finds a list of values?

IN

21
New cards

Which clause identifies column names?

SELECT

22
New cards

Which clause identifies the table?

FROM

23
New cards

Which clause does grouping?

GROUP BY

24
New cards

Which function returns number of rows?

COUNT

25
New cards

Which function finds the total of a column?

SUM

26
New cards

Which function returns the average?

AVG

27
New cards

Which function finds the lowest value?

MIN

28
New cards

Which join returns matching and non-matching rows from the left table?

LEFT

29
New cards

Which clause is like WHERE but for GROUP BY?

HAVING

30
New cards

Which function finds the highest value?

MAX

31
New cards

Which join returns rows that match only?

INNER

32
New cards

Which keyword inserts data?

INSERT

33
New cards

Which keyword changes data?

UPDATE

34
New cards

Which keyword adds or modifies a table?

ALTER

35
New cards

Which keyword creates the table structure?

CREATE

36
New cards

Which constraint requires a value to be entered?

NOT NULL

37
New cards

What column type holds numbers?

INTEGERS

38
New cards

What column type holds ASCII characters?

VARCHAR

39
New cards

What defines rules for a table?

CONSTRAINT

40
New cards

What ensures column values are unique?

UNIQUE

41
New cards

Which constraint is a combo of NOT NULL and UNIQUE?

PRIMARY KEY

42
New cards

Which key references another table’s row?

FOREIGN KEY