1. Write an SQL query to list the name of all Departments that have 2 more more words in the Department name and whose employees have the designation of a ‘staff’ and are from Houston. (write subqueries) 2. Write an SQL query to display the Project Name of all projects where employees have worked for 5 hours or less or 25 hours or more and the Project Names start with a “T” or a “C”. (write subqueries)

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
icon
Concept explainers
Question

1. Write an SQL query to list the name of all Departments that have 2 more more words in the Department name and whose employees have the designation of a ‘staff’ and are from Houston. (write subqueries)

2.  Write an SQL query to display the Project Name of all projects where employees have worked for 5 hours or less or 25 hours or more and the Project Names start with a “T” or a “C”. (write subqueries)

The image contains a representation of database tables, which are commonly used in the field of database management and design. Each line describes a separate table, structured as follows:

1. **Employee Table:**
   - **Columns:** 
     - `empNo` (Primary Key)
     - `firstName`
     - `lastName`
     - `address`
     - `DOB` (Date of Birth)
     - `sex`
     - `position`
     - `deptNo` (Foreign Key referring to Department table)

2. **Department Table:**
   - **Columns:**
     - `deptNo` (Primary Key)
     - `deptName`
     - `mgrEmpNo` (Manager Employee Number, likely a Foreign Key referencing the Employee table)

3. **Project Table:**
   - **Columns:**
     - `projNo` (Primary Key)
     - `projName`
     - `deptNo` (Foreign Key referencing the Department table)

4. **WorksOn Table:**
   - **Columns:**
     - `empNo` (Composite Key, part of the primary key referencing Employee table)
     - `projNo` (Composite Key, part of the primary key referencing Project table)
     - `hoursWorked`

5. **Dependent Table:**
   - **Columns:**
     - `empNo` (Composite Key, part of the primary key referencing Employee table)
     - `Dependent_name` (Composite Key, primary key indicating the name of the dependent)
     - `Sex`
     - `Bdate` (Birthdate)
     - `Relationship`

In this schema:
- The underlined attributes denote primary keys.
- The red text highlights foreign keys linking related tables. 
- The structure reflects a typical relational database schema used to manage employee, department, project, work, and dependent information.
Transcribed Image Text:The image contains a representation of database tables, which are commonly used in the field of database management and design. Each line describes a separate table, structured as follows: 1. **Employee Table:** - **Columns:** - `empNo` (Primary Key) - `firstName` - `lastName` - `address` - `DOB` (Date of Birth) - `sex` - `position` - `deptNo` (Foreign Key referring to Department table) 2. **Department Table:** - **Columns:** - `deptNo` (Primary Key) - `deptName` - `mgrEmpNo` (Manager Employee Number, likely a Foreign Key referencing the Employee table) 3. **Project Table:** - **Columns:** - `projNo` (Primary Key) - `projName` - `deptNo` (Foreign Key referencing the Department table) 4. **WorksOn Table:** - **Columns:** - `empNo` (Composite Key, part of the primary key referencing Employee table) - `projNo` (Composite Key, part of the primary key referencing Project table) - `hoursWorked` 5. **Dependent Table:** - **Columns:** - `empNo` (Composite Key, part of the primary key referencing Employee table) - `Dependent_name` (Composite Key, primary key indicating the name of the dependent) - `Sex` - `Bdate` (Birthdate) - `Relationship` In this schema: - The underlined attributes denote primary keys. - The red text highlights foreign keys linking related tables. - The structure reflects a typical relational database schema used to manage employee, department, project, work, and dependent information.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Query Syntax
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
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