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