Solved

Based on the Table Description and SQL Shown, Which Query

Question 11

Multiple Choice

Based on the table description and SQL shown, which query increases the FeeAmount by 2 percent? Fees ( FeeID, FeeType, FeeAmount )


A) UPDATE Fees SET FeeAmount = FeeAmount * 1.2;
B) UPDATE Fees SET FeeAmount = FeeAmount * 2%;
C) UPDATE Fees SET FeeAmount = FeeAmount * 1.02;
D) SELECT Fees WHERE FeeAmount = FeeAmount * 1.02;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions