1.

Refer the below schema and create the table mark ​

Answer»

Answer:

   create table mark(

            value number,

            subject_id number references SUBJECT(subject_id),

            student_id number references STUDENT(student_id),

            primary key(subject_id,student_id)

    );

Explanation:

Since TWO primary key.



Discussion

No Comment Found