List all classes (course_no, section_no) taught by instructor Hanks.
What will be an ideal response?
```SELECT s.course_no, s.section_no
FROM section s, instructor i
WHERE s.instructor_id = i.instructor_id
AND i.last_name = 'Hanks'```
Computer Science & Information Technology
You might also like to view...
The Short Text data type will allow a user to store up to 512 characters in that field
Indicate whether the statement is true or false
Computer Science & Information Technology
Three security problems of Bluetooth devices are bluejacking, bluesnarfing, and bluebugging.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology