Unit 4c Flashcards

1
Q

Provides ability to define, alter, and remove object definitions from database

A

Data Definition

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

Refers to modification of database data

A

Data Manipulation

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

Command based way to ask a database a question

A

Database Query

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

Each command or SQL statement begins with keyword such as INSERT or SELECT

A

SQL Query Syntax

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

Primary purpose to retrieve information from database

A

SELECT Command

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

Function works on all rows not filtered out by query

A

GROUP BY

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

Clause specifies conditions for groups similar to way WHERE clause specifies conditions for rows

A

HAVING

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

Clause allows sorting on names of columns

A

ORDER BY

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

Counts rows in a column

A

COUNT ( )

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

Returns largest value in column

A

MAX ( )

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

Returns the smallest value within column

A

MIN ( )

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

Accumulates all the values within column

A

SUM ( )

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

Returns average of set of values

A

AVG ( )

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

Provides capability of forming sub-groups of query

A

SELECT using GROUP BY

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

Provides ability to pull data from two or more tables

A

SELECT using Table Joins

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