0% found this document useful (0 votes)
4 views9 pages

Academic Course Database

Uploaded by

bachaparty346
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views9 pages

Academic Course Database

Uploaded by

bachaparty346
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 9

Academic_course_Database

We have four column in this database


I. Student

II. Instructor

III. Courses

IV. Registration
Student Table Code
Instructor Table Code
Course Table Code
Registration Table Code
Student Table
INSERT INTO Students (student_id,first_name, last_name, email, date_of_birth)
VALUES
('101','Hamza', 'Hassan', '[email protected]', TO_DATE('2007-03-08', 'YYYY-MM-DD'));
Instructor Table
INSERT INTO Instructors (instructor_id ,first_name, last_name, email)
VALUES

('01','Abdul', ‘Hafeez', '[email protected]');


Courses Table
INSERT INTO Courses ( course_id ,course_name, course_code, instructor_id)
VALUES
('111','Diploma Information Technology(Morning_Shift), 'CS101', 01);
Registration Table
INSERT INTO Registrations (registration_id ,student_id, course_id)
VALUES

(1120,110, 112);

You might also like