Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT "History" AS Course, COUNT(*) AS Number
FROM Enrolls
WHERE COURSENUM = 405
UNION
SELECT "Science" AS Cource COUNT(*) AS Number
FROM Enrolls
WHERE COURSENUM = 605;
SELECT COURSENUM, COUNT(*)
FROM Enrolls
WHERE COURSENUM IN (405,605)
GROUP BY COURSENUM
David W. Fenton said:We could be confused in exactly the same way, but confusion might be like Nulls, and not comparable.
Why is this illegal and how can I fix it?
Why is this illegal and how can I fix it?