Computer Science Illuminated
Computer Science Illuminated
7th Edition
ISBN: 9781284155617
Author: Nell Dale, John Lewis
Publisher: Jones & Bartlett Learning
bartleby

Concept explainers

bartleby

Videos

Expert Solution & Answer
Book Icon
Chapter 12, Problem 64E

Explanation of Solution

Course table:

This table tells about the courses that are taught at the university.

Table creation:

CREATE TABLE COURSE (CourseID int primary key, CourseName varchar2(10));

The above query is used to create a table named “COURSE” with two columns named “CourseID”, and “CourseName”.

Inserting values:

INSERT INTO COURSE VALUES (101, 'Mathematics');

INSERT INTO COURSE VALUES (102, 'Computer Science');

INSERT INTO COURSE VALUES (103, 'Information technology');

The above queries are used to insert values into the table named “COURSE”.

After creating and inserting values, view the table by executing the query “SELECT * FROM COURSE”.

Screenshot of the table “COURSE”

Faculty table:

This table tells about the professors who teach those courses.

Table creation:

CREATE TABLE FACULTY (FacultyID int primary key, Name varchar2(10), CourseID int references COURSE);

The above query is used to create a table named “FACULTY” with columns named “FacultyID”, “Name”, and “CourseID”.

Inserting values:

INSERT INTO FACULTY VALUES (111, 'Adams', 102);

INSERT INTO FACULTY VALUES (112, 'Charles', 103);

INSERT INTO FACULTY VALUES (113, 'Bekki', 101);

The above queries are used to insert values into the table named “FACULTY”.

After creating and inserting values, view the table by executing the query “SELECT * FROM FACULTY”.

Screenshot of the table “FACULTY”

Student table:

This table tells about the students who takes those courses.

Table creation:

CREATE TABLE STUDENT (StudentID int primary key, StudentName varchar2(10), CourseID int references COURSE);

The above query is used to create a table named “STUDENT” with columns named “StudentID”, “StudentName”, and “CourseID”.

Inserting values:

INSERT INTO STUDENT VALUES (201, 'Zara', 102);

INSERT INTO STUDENT VALUES (202, 'Ryo', 101);

INSERT INTO STUDENT VALUES (203, 'Maya', 102);

The above queries are used to insert values into the table named “STUDENT”...

Blurred answer
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Enhanced Entity Relationship Model; Author: Data Science Center;https://www.youtube.com/watch?v=ocQUtXPumdQ;License: Standard YouTube License, CC-BY