Examine the structure of the MEMBERS table: (Choose the best answer) Examine the SQL statement: SQL > SELECT city, last_name LNAME FROM MEMBERS ORDER BY 1, LNAME DESC; What would be the result execution? A. It displays all cities in…

Which statement is true about transactions? A. A set of Data Manipulation Language (DML) statements executed in a sequence ending with a SAVEPOINT forms a single transaction B. Each Data Definition Language (DDL) statement executed forms a single transaction. C.…

See the Exhibit and examine the structure of the PROMOTIONS table: Using the PROMOTIONS table, you need to find out the average cost for all promos in the range $0-2000 and $2000-5000 in category A You issue the following SQL…

You issued this command: CHOOSETHREE SQL > DROP TABLE employees; Which three statements are true? A. Sequences used in the EMPLOYEES table become invalid. B. If there is an uncommitted transaction in the session, it is committed. C. All indexes…

Evaluate the following CRTEATE TABLE commands: The above command fails when executed. What could be the reason? A. SYSDATE cannot be used with the CHECK constraint. B. The BETWEEN clause cannot be used for the CHECK constraint. C. The CHECK…