Assigment 1
Assigment 1
use schoolDB
STUDENT TABLE
create table students (
);
COURSES TABLE
create table courses (
);
FACULTIES TABLE
);
MARKS TABLE
create table marks (
student_id int ,
course_id int ,
DEPARTMENT TABLE
create table department (
faculty_id int ,
);
ENROLLMENT TABLE
create table enrollment (
student_id int ,
course_id int ,
);
ATTENDANCE TABLE
student_id int ,
course_id int ,
);
LIBRARY TABLE
student_id int ,
);