Database Management Extra 11 Flashcards

1
Q

The SQL command that permanently writes data changes to a database.

A

COMMIT

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

A SQL aggregate function that outputs the number of rows containing not null values for a given column or expression, sometimes used in conjunction with the DISTINCT clause.

A

COUNT

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

A SQL command that allows data rows to be deleted from a table.

A

DELETE

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

A SQL clause that produces only a list of values that are different from one another.

A

DISTINCT

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

A SQL command that permanently deletes an index.

DROP TABLE = A SQL command that permanently deletes a table and its data.

A

DROP INDEX

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

In SQL, a comparison operator that checks whether a subquery returns any rows.

A

EXISTS

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

A SQL clause used to create frequency distributions when combined with any of the aggregate functions in a SELECT statement.

HAVING = clause applied to the output of a ??? ??? operation to restrict selected rows.

A

GROUP BY

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

In SQL, a comparison operator used to check whether a value is among a list of specified values.

A

IN

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

A query that is embedded or nested inside another query. Also known as a nested query or a subquery.

A

Inner Query

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

A SQL command that allows the insertion of one or more data rows into a table.

A

INSERT

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