Which courses are not offered in either the College of Arts and Sciences or the College of Education? (Change the SQL query to a relational algebra query.) Please show the output based on your answer as well in a table for further explanation.   SELECT COURSE.COURSE#, COURSE.NAME, COURSE.COLLEGE FROM COURSE WHERE COURSE.COLLEGE <> “Arts and Sciences” OR COURSE.COLLEGE <> “Education”;

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Question: Which courses are not offered in either the College of Arts and Sciences or the College of Education?

(Change the SQL query to a relational algebra query.) Please show the output based on your answer as well in a table for further explanation.  

SELECT COURSE.COURSE#, COURSE.NAME, COURSE.COLLEGE

FROM COURSE

WHERE COURSE.COLLEGE <> “Arts and Sciences” OR COURSE.COLLEGE <> “Education”;

**Madeira College Relations**

This document comprises several database relations used in Madeira College to manage academic and administrative data. Below are detailed transcriptions and explanations of each section:

### Employee Relation
- **Columns:** Name, Employee ID (EID), Social Security Number (SSN), Date Joined, Department Number (Dept No), Salary
- Purpose: To maintain personal and job-related information for college employees.
- Example: Ram Raj, with EID RR79345, joined on 23-JUN-01, works in department 6, and earns 44,000.

### TEXTBOOK Relation
- **Columns:** ISBN, Title, Year, Publisher
- Purpose: To catalog the textbooks used at the college, including their publication details.
- Example: The textbook "Database Management" (ISBN: 000-66574998) was published in 2007 by Thomson.

### TAKES Relation
- **Columns:** Section Number, Grade, Student ID (SID)
- Purpose: To record student grades for various sections of courses.
- Example: In section 101A2014, a student with ID KP78924 received a grade of A.

### USES Relation
- **Columns:** Course Number (COURSE#), ISBN, Employee ID (EMPID)
- Purpose: To link courses with the textbooks and associate them with employees (instructors).
- Example: Course 1HECON123 uses the textbook with ISBN 0296748-99 and is associated with employee CM65436.

These database tables collectively support the organization of key academic and personnel data at Madeira College, ensuring efficient management of resources, staff, and student performance.
Transcribed Image Text:**Madeira College Relations** This document comprises several database relations used in Madeira College to manage academic and administrative data. Below are detailed transcriptions and explanations of each section: ### Employee Relation - **Columns:** Name, Employee ID (EID), Social Security Number (SSN), Date Joined, Department Number (Dept No), Salary - Purpose: To maintain personal and job-related information for college employees. - Example: Ram Raj, with EID RR79345, joined on 23-JUN-01, works in department 6, and earns 44,000. ### TEXTBOOK Relation - **Columns:** ISBN, Title, Year, Publisher - Purpose: To catalog the textbooks used at the college, including their publication details. - Example: The textbook "Database Management" (ISBN: 000-66574998) was published in 2007 by Thomson. ### TAKES Relation - **Columns:** Section Number, Grade, Student ID (SID) - Purpose: To record student grades for various sections of courses. - Example: In section 101A2014, a student with ID KP78924 received a grade of A. ### USES Relation - **Columns:** Course Number (COURSE#), ISBN, Employee ID (EMPID) - Purpose: To link courses with the textbooks and associate them with employees (instructors). - Example: Course 1HECON123 uses the textbook with ISBN 0296748-99 and is associated with employee CM65436. These database tables collectively support the organization of key academic and personnel data at Madeira College, ensuring efficient management of resources, staff, and student performance.
**The DATABASE PDF**

### DEPARTMENT Relation

| NAME           | DCODE | COLLEGE              | PHONE     | LOCATION    | HODID   |
|----------------|-------|----------------------|-----------|-------------|---------|
| Economics      | 1     | Arts and Sciences    | 5235567654| 123 McMicken| FM49276 |
| QA/QM          | 3     | Business             | 5235566566| 333 Lindner | BA54325 |
| Economics      | 4     | Education            | 5235569978| 336 Dyer    | CM65436 |
| Mathematics    | 6     | Engineering          | 5235564379| 728 Old Chem| RR79345 |
| IS             | 7     | Business             | 5235567489| 333 Lindner | CC49234 |
| Philosophy     | 9     | Arts and Sciences    | 5235565546| 272 McMicken| CM87659 |

### COURSE Relation

| NAME                        | COURSE#  | CREDIT | COLLEGE  | HRS | DCODE |
|-----------------------------|----------|--------|----------|-----|-------|
| Intro to Economics          | 15ECON112| U      | Arts and Sciences | 3   | 1     |
| Operations Research         | 22QA375  | U      | Business | 2   | 3     |
| Intro to Economics          | 18ECON123| U      | Education| 4   | 4     |
| Supply Chain Analysis       | 22QA411  | U      | Business | 3   | 3     |
| Principles of IS            | 22IS270  | G      | Business | 3   | 7     |
| Programming in C++          | 20ECE5212| G      | Engineering | 3 | 6     |
| Optimization                | 22QA888  | G      | Business | 3   | 3     |
| Financial Accounting        | 18ACT801 | G      | Education| 3   | 4     |
| Database Concepts           | 22IS330  | U      | Business | 4   | 7     |
| Database Principles         | 22IS832  | G      | Business | 3   | 7     |
| Systems Analysis            |
Transcribed Image Text:**The DATABASE PDF** ### DEPARTMENT Relation | NAME | DCODE | COLLEGE | PHONE | LOCATION | HODID | |----------------|-------|----------------------|-----------|-------------|---------| | Economics | 1 | Arts and Sciences | 5235567654| 123 McMicken| FM49276 | | QA/QM | 3 | Business | 5235566566| 333 Lindner | BA54325 | | Economics | 4 | Education | 5235569978| 336 Dyer | CM65436 | | Mathematics | 6 | Engineering | 5235564379| 728 Old Chem| RR79345 | | IS | 7 | Business | 5235567489| 333 Lindner | CC49234 | | Philosophy | 9 | Arts and Sciences | 5235565546| 272 McMicken| CM87659 | ### COURSE Relation | NAME | COURSE# | CREDIT | COLLEGE | HRS | DCODE | |-----------------------------|----------|--------|----------|-----|-------| | Intro to Economics | 15ECON112| U | Arts and Sciences | 3 | 1 | | Operations Research | 22QA375 | U | Business | 2 | 3 | | Intro to Economics | 18ECON123| U | Education| 4 | 4 | | Supply Chain Analysis | 22QA411 | U | Business | 3 | 3 | | Principles of IS | 22IS270 | G | Business | 3 | 7 | | Programming in C++ | 20ECE5212| G | Engineering | 3 | 6 | | Optimization | 22QA888 | G | Business | 3 | 3 | | Financial Accounting | 18ACT801 | G | Education| 3 | 4 | | Database Concepts | 22IS330 | U | Business | 4 | 7 | | Database Principles | 22IS832 | G | Business | 3 | 7 | | Systems Analysis |
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
SQL Query
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education