Do #6 but limit it to instructors teaching more than 9 sections. (6 rows).
What will be an ideal response?
```
SELECT instructor_id ID, COUNT(*)
FROM section
GROUP BY Instructor_id
HAVING COUNT(*) > 9
```
Computer Science & Information Technology
You might also like to view...
WordArt ____ in the interior of a letter can consist of a solid color, texture, picture, or gradient.
A. fill B. style C. glow D. depth
Computer Science & Information Technology
What character, when appended to a command, causes the command to be run in the background?
A. $ B. & C. % D. #
Computer Science & Information Technology