OCP CBT Question 649
Please solve the following question.
Which SQL statement will retrieve the `first_name`, `last_name`, and `email` for all employees whose `last_name` starts with 'Sm'?
sqlSELECT first_name, last_name, email FROM employees;
EMPLOYEES Table Sample Data
| FIRST_NAME | LAST_NAME | |
|---|---|---|
| John | Smith | JSMITH |
| Jane | Smollet | JSMOLLET |
| Peter | Jones | PJONES |
| Emily | Adams | EADAMS |
| Michael | Small | MSMAL |