Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given the following relational database schema: Employee=(ID, name, position, officeN, phoneN,age)// assume the name is unique . Committee =( title, meetingDate, startTime, endTime, location)// You

Given the following relational database schema:

Employee=(ID, name, position, officeN, phoneN,age)// assume thename is unique.

Committee =( title, meetingDate, startTime, endTime, location)// You may use <,>,=,!= between dates and times.

Membership= ( ID, title, task) // task = member or chair.

Use a minimum number of operations and tables to express the following queries by SQL statements:

1. List the name of every employee who is a chair of at least two committees.

Select name From dis)

2. List the name of every employee who is not serving on any committee.

Employee=(ID, name, position, officeN, phoneN, age)//assume thename is unique.

Committee =( title, meetingDate, startTime, endTime, location)// You may use <,>,=,!= between dates and times.

Membership= ( ID, title, task) // task = member or chair

3. List the name of every employee and the tile of the every committee he or she is serving on as a member ordered by the name of employee.

4. List the name of every employee who is serving aon committee that meet in location starts with the letter S and ends with the integer 7.

Employee=(ID, name, position, officeN, phoneN,age)// assume thename is unique.

Committee =( title, meetingDate, startTime, endTime, location)// You may use <,>,=,!= between dates and times.

Membership= ( ID, title, task) // task = member or chair

5. List the name of every employee who does not have a phone number.

6. List the title of every committee on which both Sandy Liu and Barry Smith are serving.

Employee=(ID, name, position, officeN, phoneN,age)// assume thename is unique.

Committee =( title, meetingDate, startTime, endTime, location)// You may use <,>,=,!= between dates and times.

Membership= ( ID, title, task) // task = member or chair

7. List the title of every committee on which Sandy Liu or Barry Smith is serving.

  1. List the name and position of oldest employees.

Employee= (ID, name, position, officeN, phoneN,age)// assume thename is unique.

Committee = ( title, meetingDate, startTime, endTime, location)// You may use

<,>,=,!= between dates and times.

Membership= ( ID, title, task) // task = member or chair

  1. List the titles of every two committees which do not meet on the same date.

10. List the name and position of every employee who does have phone number.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database Foundations Technology Fundamentals For IT Success

Authors: Bob Bryla

1st Edition

0782143725, 9780782143720

More Books

Students also viewed these Databases questions

Question

Discuss the various types of policies ?

Answered: 1 week ago

Question

Briefly explain the various types of leadership ?

Answered: 1 week ago

Question

Explain the need for and importance of co-ordination?

Answered: 1 week ago

Question

Explain the contribution of Peter F. Drucker to Management .

Answered: 1 week ago