Hello )) Please tell me - How to receive surnames of students and their mark in all subjects?
in this form -
SURNAME1 1hismark1 1hismark1 1hismark1 1hismark1.....
SURNAME2 2hismark1 2hismark1 2hismark1 2hismark1.....
I use this database -
table STUDENT
(
STUDENT_ID NUMERIC not null,
SURNAME VARCHAR(60),
);
table SUBJECT
(
SUBJ_ID NUMERIC not null,
SUBJ_NAME VARCHAR(100),
);
table EXAM_MARKS
(
EXAM_ID NUMERIC not null,
STUDENT_ID NUMERIC not null,
SUBJ_ID NUMERIC not null,
MARK NUMERIC
);
Thank you in advance ))