Homework 4 Flashcards
The Oracle —————– statement is used to add multiple rows with a single INSERT statement.
The Oracle INSERT ALL statement is used to add multiple rows with a single INSERT statement.
Aggregate functions can appear in select lists with ———–, and ——— clauses.
Aggregate functions can appear in select lists with ORDER BY, and GROUP BY clauses.
The Oracle DISTINCT clause is used to ————————— from the result set.
The Oracle DISTINCT clause is used to remove duplicates from the result set.
An —————————- summarizes the results of an expression over a number of rows, returning a single value.
16) An aggregate function summarizes the results of an expression over a number of rows, returning a single value.
—————- returns the number of rows.
COUNT returns the number of rows.
18) The Oracle ——————– clause is used to sort the records in your result set.
18) The Oracle ORDER BY clause is used to sort the records in your result set.
The ORDER BY and GROUP BY clauses can only be used in ———— statement.
The ORDER BY and GROUP BY clauses can only be used in SELECT statement.
When more than one expression is provided in the DISTINCT clause, the query will retrieve ———————– for the expressions listed.
When more than one expression is provided in the DISTINCT clause, the query will retrieve unique combinations for the expressions listed.
————— is a function which can be used to sum or total the values of a column.
SUM is a function which can be used to sum or total the values of a column.
———— function returns the average value of an expression.
AVG function returns the average value of an expression.
The Oracle —————– condition is used to retrieve values within a range in a where clause in a SELECT statement.
The Oracle BETWEEN condition is used to retrieve values within a range in a where clause in a SELECT statement.
In a select query the —————— pseudocolumn returns a number indicating the order in which Oracle selects the row from a table or set of joined rows.
In a select query the ROWNUM pseudocolumn returns a number indicating the order in which Oracle selects the row from a table or set of joined rows.
In a select query the —————– clause doesn’t ignore NULL values.
In a select query the DISTINCT clause doesn’t ignore NULL values.