I.M MIDTERMS | WEEK 9 - 11

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

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:22 AM on 9/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

Aggregate Functions

These are functions that can be used in a group of rows to give result of a single value.

2
New cards

Aggregate Functions

An example of this function is MIN(), MAX(), COUNT(), SUM(), AND AVG()

3
New cards

MIN()

This function is used if you want to get the lowest row value of the chosen column

4
New cards

MAX()

This is used if you want to get the highest row value of the chosen column

5
New cards

COUNT()

This function is used if you want to get the number of rows in the selected column

6
New cards

SUM()

This function is used to get the summation of all rows selected numeric column

7
New cards

AVG()

This function is used to get the average of all rows of selected numeric column

8
New cards

Limit Clause

This is used to specify the number of retrieved data rows. It is useful on large tables with more than thousands of rows as retrieving many data will generate poor performance specially when it is not needed.

9
New cards

LIKE Operator

This is used in a WHERE clause to retrieve a specific string pattern.

10
New cards

Wildcard Characters

To produce a string pattern, __ are frequently used to signify omitted characters.

11
New cards

%(Percent)

This symbol is used to signify zero to multiple characters in the result

12
New cards

_ (Underscore)

This symbol is used to signify one or single characters in the result

13
New cards

Aliases

This is used to give a table or column a temporary name

14
New cards

Aliases

These only exists during the query duration, frequently used to make the name of the table or column more readable.

15
New cards

Order By Clause

This clause is used if you want to sort the data rows result based on specified columns, it can be ascending or descending.

16
New cards

Group By Clause

This clause will aggregate or combine data rows together that have the same values. It will collect all the values of data rows with similar type and display it by showing different types that’s collected.

17
New cards

Group by Clause

This clause is like answering the question “how many employees in each branch”

18
New cards

Having Clause

This clause is used to filter result data rows on a Group By Clause.

19
New cards

MySQL Union Operator

This operator will unite the query result of more than one SELECT statements and will remove duplicate results.