Give a 10% raise to employee number 111.

Write queries/statements for the following. (Use tables created in Chapter 4 Lab Activity.)

```
SQL> UPDATE employee
2 SET Salary = Salary + 0.10 * Salary
3 WHERE EmployeeId = 111;

1 row updated.
```

Computer Science & Information Technology

You might also like to view...

Audio files should have a positive impact on a presentation

Indicate whether the statement is true or false

Computer Science & Information Technology

A ________ is a category of data that is organized and named

A) list B) field C) record D) source

Computer Science & Information Technology