✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
A company wants to increase the salary by 10% only for employees earning less than 3000. Consider the following SQL query:
<SQL>
UPDATE EmployeeSET Salary = Salary * 1.1;
What is the issue with this query?