Class 4 Flashcards

1
Q

The Oracle INSERT ALL statement is used to add multiple rows just in one table at a time.

A

Answer: False

The Oracle INSERT ALL statement is used to add multiple rows just in one table or multiple tables at a time.

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

The DISTINCT clause can only be used with SELECT statements.

A

Answer: True

The DISTINCT clause can only be used with SELECT statements.

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

The DISTINCT clause doesn’t ignore NULL values.

A

Answer: False

The DISTINCT clause DOESn’t ignore NULL values.

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

All aggregate functions group data to ultimately produce a single result value.

A

Answer: True

All aggregate functions group data to ultimately produce a single result value.

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

The COUNT(DISTINCT expression) function returns the number of unique and non-null items in a group.

A

Answer: False

The COUNT(DISTINCT expression) function returns the number of unique and NULL items in a group.

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

Aggregate functions can not be nested.

A

Answer: False

Aggregate functions CAN be nested.

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

The ORDER BY clause can only be used in SELECT statement.

A

Answer: True

The ORDER BY clause can only be used in SELECT statement.

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

The nested aggregate functions starts the process from the inner aggregate function.

A

Answer: True

The nested aggregate functions starts the process from the inner aggregate function.

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

We can have the DISTINCT clause in UPDATE statements.

A

Answer: False

We can have the DISTINCT clause in UPDATE* statements.

just in SELECT statements

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

We cannot use both SQL function and aggregate function in a nested aggregate functions query.

A

Answer: False

We CANnot use both SQL function and aggregate function in a nested aggregate functions query.

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

The Oracle BETWEEN condition is used to retrieve values within a range in a where clause in a SELECT statement.

A

Answer: True

The Oracle BETWEEN condition is used to retrieve values within a range in a where clause in a SELECT statement.

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

We cannot use ROWNUM to limit the number of rows returned by a query.

A

Answer: False

We CANnot use ROWNUM to limit the number of rows returned by a query.

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