Lesson 10 Flashcards

1
Q

Aggregate Function

A

Values of multiple rows are grouped together to perform a calculation and return a single value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Built-in Function

A

Function that is already available for use in SQL server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

COUNT()

A

Returns the number of rows that match a specified criteria.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

SUM()

A

Returns the total sum of a numeric column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

AVG()

A

Returns the average value of a numeric column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

MIN()

A

Returns the smallest value of the selected column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

MAX()

A

Returns the largest value of the selected column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Column Alias

A

Temporary name given to a column for readability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

SELECT DISTINCT

A

Statement used to return only different values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly