Write a SELECT statement to list first and last names of all instructors sorted by last name.
What will be an ideal response?
```
SELECT first_name, last_name
FROM instructor
ORDER BY last_name```
Computer Science & Information Technology
You might also like to view...
To properly secure a database, ________ should be disabled, because they allow users access to the Navigation Pane and the Visual Basic Editor even if these items are hidden from view initially in the database
Fill in the blank(s) with correct word
Computer Science & Information Technology
Which of the following is a part into which a DTD like the one in the accompanying figure can be divided?
A. internal subset B. system identifier C. root element D. public identifier
Computer Science & Information Technology