employer cover photo
employer logo
employer logo

ec2 Software Solutions

Est-ce votre entreprise ?

Question d’entretien chez ec2 Software Solutions

Given a table Employees (UID, LastName, FirstName, Salary), write a statement that will modify table by giving 10% increase to all employees whose salaries are less than 50k.

Réponse à la question d'entretien

Utilisateur anonyme

22 avr. 2016

UPDATE @Employees SET Salary = Salary + 0.1*Salary WHERE Salary < 50000