InterviewSolution
Saved Bookmarks
| 1. |
Write the UPDATE statement in MySQL to increase commission by 100.00 in the "Commission" column in the 'Emp' table. |
|
Answer» UPDATE Emp SET Commission = Commission + 100.00. |
|