Determine the difference in days between the first start time of a class and the last start time for a course when the course has more than one section .

What will be an ideal response?

```SELECT MAX(start_date_time) - MIN(start_date_time),
course_no, COUNT(course_no)
FROM section
GROUP BY course_no
HAVING COUNT(course_no) >1

Computer Science & Information Technology

You might also like to view...

Word's default font is Arial Black

Indicate whether the statement is true or false

Computer Science & Information Technology

________ is data about data such as source information, key words, and captions

Fill in the blank(s) with correct word

Computer Science & Information Technology