Question: Write an SQL statement that does the following: For each row in the Stock table, if the TradingSymbol column is XYZ, change it to ABC.
Write an SQL statement that does the following: For each row in the Stock table, if the TradingSymbol column is “XYZ”, change it to “ABC”.
Step by Step Solution
3.36 Rating (159 Votes )
There are 3 Steps involved in it
UPDATE Stock SET TradingSymbol ABC WHERE TradingSymbol XYZ ... View full answer
Get step-by-step solutions from verified subject matter experts
