Dragon Ball 2 part 3

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

1/25

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.

26 Terms

1
New cards

Key and Constraints

this are Primary Key, Composite Key and Foreign Key.

2
New cards

Primary Key

uniquely identifies each row.

3
New cards

Composite Key

primary key with 2+ columns

4
New cards

Foreign Key

links to another table’s key

5
New cards

Clustered index

orders the actual rows

6
New cards

Non-Clustered index

separate lookup structure

7
New cards

Inner Join

matching rows only

8
New cards

Left Join

all left + matches

9
New cards

Right Join

matches + all right

10
New cards

Cross Join

all combinations

11
New cards

Full Join

all rows from both tables + matches

12
New cards

UNION ALL

in mysql there is no syntax of Full Join. What should you use then?

13
New cards

SELECT

read data

14
New cards

INSERT

add rows

15
New cards

UPDATE

change values

16
New cards

DELETE

remove rows

17
New cards

Invalid

does “ = NULL “ exist?

18
New cards

Aggregates & Grouping

COUNT(), SUM(), AVG(), MAX(), MIX()

19
New cards

GROUP BY

This is how you group results

20
New cards

HAVING

to filter grouped data

21
New cards

Transaction

all-or-nothing changes

22
New cards

Cascade Delete

removes related rows automatically

23
New cards

Pattern Matching

Uses LIKE to Filter

24
New cards

Letter% (%D)

Find the name that start with a letter

25
New cards

%Letter (D%)

Find the name that ends with a letter

26
New cards

%Letter/s%

Find name contain a letter/s