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
Students have asked these similar questions
A business case scenario and asked to formulate an appropriate software design solution. Theyshould complete the case and upload the solution.  will be required to read the case,identify and document the key issues, problems, and opportunities presented, and then design,and develop an appropriate integrated design solution to the problem.  mustdemonstrate good spreadsheet, database, analytical, and word-processing skills whendeveloping solutions. Additionally,  must be creative and demonstrate synthesising andapplying Database Management and Data Analytics Principles learned in the course. They willalso need to research some aspects of the assessment.   CASE BACKGROUNDMGMT SS STATS, an umbrella body that facilitates and serves various Social SecurityOrganizations/Departments within the Caribbean territories, stoodpoised to meet the needs of its stakeholders by launching an onlinedatabase at www.SSDCI.gov. The database will provide membersand the public access to the complete set of…
A business case scenario and asked to formulate an appropriate software design solution. Theyshould complete the case and upload the solution.  will be required to read the case,identify and document the key issues, problems, and opportunities presented, and then design,and develop an appropriate integrated design solution to the problem.  mustdemonstrate good spreadsheet, database, analytical, and word-processing skills whendeveloping solutions. Additionally,  must be creative and demonstrate synthesising andapplying Database Management and Data Analytics Principles learned in the course. They willalso need to research some aspects of the assessment.   CASE BACKGROUNDMGMT SS STATS, an umbrella body that facilitates and serves various Social SecurityOrganizations/Departments within the Caribbean territories, stoodpoised to meet the needs of its stakeholders by launching an onlinedatabase at www.SSDCI.gov. The database will provide membersand the public access to the complete set of…
Using MATLAB symbolic toolbox, given these 3 equations, how would you solve for mu = function(theta), making sure that there are no mu's on the right hand side, making sure theta-dot-dot, theta-dot-squared- and N aren't in the final answer either.
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.
Similar questions
SEE MORE QUESTIONS
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