Write the same SELECT statement as #5 but include students who are Electronic Engineers employees with the last name beginning with S or B. (Hint: Use parentheses in the WHERE clause to isolate the OR logic).

What will be an ideal response?

```
SELECT last_name, first_name, employer
FROM student
WHERE employer = 'Electronic Engineers'
AND (last_name LIKE 'S%' OR last_name LIKE 'B%')
ORDER BY last_name```

Computer Science & Information Technology

You might also like to view...

C (Either of the above)

A) A COMMIT or ROLLBACK statement is issued. B) A DDL statement, such as CREATE, is issued. C) Either of the above statements D) None of the above

Computer Science & Information Technology

A spreadsheet is another name for a workbook

Indicate whether the statement is true or false

Computer Science & Information Technology