Write a SELECT statement to list the first and last name of students that do not have the salutation of "Dr.". (267 rows)
What will be an ideal response?
```
SELECT first_name, last_name
FROM student
WHERE salutation <> 'Dr.'
```
Computer Science & Information Technology
You might also like to view...
The ________ error value indicates that a function or formula in a pasted cell no longer refers to the correct cells
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
_________, such as those used by the conventional telephone system, represent data with continuous waves. A. Analog signals B. Digital signals C. Ordinal signals D. Cardinal signals
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology