Select all the data of employees that work in department 14.
| SELECT ssn, name, lastname, department FROM employees WHERE department = 14
5 rows 0 msec
5 rows 0 msec
| ssn | name | lastname | department | 
|---|---|---|---|
| 123234877 | Michael | Rogers | 14 | 
| 152934485 | Anand | Manikutty | 14 | 
| 332154719 | Mary-Anne | Foster | 14 | 
| 845657245 | Elizabeth | Doe | 14 | 
| 845657246 | Kumar | Swamy | 14 |