Multiple Choice
Consider the Recreation relation in the exhibit. A data operation that changes one of the tuples for Student_ID 1003 must be performed. It is necessary to change one of the activities from swimming to tennis. The Student_ID and Activity attributes make up the primary key for the Recreation relation. All related information must be altered, as well. Which SQL statement or statements would best accomplish this?
A) UPDATE Recreation SET Activity, Activity_Fee ('Tennis',100) WHERE Student_ID = 1003;
B) UPDATE TABLE Recreation ALTER COLUMN ACTIVITY SET ACTIVITY = 'Tennis', Activity_Fee = 100 WHERE Student__ID = 1003 AND Activity = wimming?AND Activity = ?wimming?
C) UPDATE Recreation SET Activity = 'Tennis', Activity_Fee = 100 WHERE Student_ID = 1003 AND Activity = 'Swimming';
D) DELETE Activity FROM Recreation WHERE Student_ID = 1003; INSERT INTO Recreation VALUES (1003, 'Tennis', 100) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q31: Which subset of Structured Query Language (SQL)
Q32: Consider the relational database shown in the
Q33: Your enterprise is creating a relation (shown
Q34: Consider the following database information: domain s_id:
Q35: Which concurrency control method should be used
Q37: What is the highest normal form of
Q38: Consider the table for an employee database
Q39: Consider the entity-relationship (ER) diagram shown in
Q40: Consider the table for an employee database
Q41: The exhibit shows a table called Housing