A transaction is the complete set of closely related update commands that must all be done, or none of them done, for the database to remain valid. True False TRUE ANSWER : ? YOUR ANSWER : ?
A CASE SQL statement is which of the following? A way to establish a data definition in SQL. A way to establish a loop in SQL. A way to establish an IF-THEN-ELSE in SQL. All of these TRUE ANSWER : ? YOUR ANSWER : ?
A correlated subquery is where the outer query depends on data from the inner query. False True TRUE ANSWER : ? YOUR ANSWER : ?
What type of join is needed when you wish to include rows that do not have matching values? All of these Outer join Equi-join Natural join TRUE ANSWER : ? YOUR ANSWER : ?
A function returns one value and has only output parameters. True False TRUE ANSWER : ? YOUR ANSWER : ?
What type of join is needed when you wish to return rows that do have matching values? All of these Outer join Natural join Equi-join TRUE ANSWER : ? YOUR ANSWER : ?
How many tables may be included with a join? All of these One Three Two TRUE ANSWER : ? YOUR ANSWER : ?
When AUTOCOMMIT is set on, changes will be made automatically at the end of each SQL statement. True False TRUE ANSWER : ? YOUR ANSWER : ?
Outer join is the same as equi-join, except one of the duplicate columns is eliminated in the result table. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is a correlated subquery? Uses the result of an outer query to determine the processing of an outer query. Uses the result of an inner query to determine the processing of an inner query. Uses the result of an outer query to determine the processing of an inner query. Uses the result of an inner query to determine the processing of an outer query. TRUE ANSWER : ? YOUR ANSWER : ?