Hi guys!
Please - tell me -how to perform the following task.
There is a table-
table SUBJECT
(
SUBJ_ID NUMERIC not null,
SUBJ_NAME VARCHAR(100),
HOUR NUMERIC,
SEMESTER NUMERIC
);
I need to count the number of items. studied in each course.
I had already counted number of subjects, studied in each semester -
SELECT SEMESTER , COUNT(*) FROM SUBJECT GROUP BY SEMESTER;
but is it possible to count for each course?
Thanks in advance!))