SQL code for: (1) Hint: A NULL in the hours column should be considered as zero hours. Find the ssn, lname, and the total number of hours worked on projects for every employee whose total is less than 40 hours. Sort the result by lname */ /*

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

SQL code for:

(1) Hint: A NULL in the hours column should be considered as zero hours. Find the ssn, lname, and the total number of hours worked on projects for every employee whose total is less than 40 hours. Sort the result by lname */ /*

(2) For every project that has more than 2 employees working on it: Find the project number, project name, number of employees working on it, and the total number of hours worked by all employees on that project. Sort the results by project number. /*

(3) For every employee who has the highest salary in their department: Find the dno, ssn, lname, and salary. Sort the results by department number. */ /*

(4) For every employee who does not work on any project that is located in Houston: Find the ssn and lname. Sort the results by lname /*

(5) Hint: This is a DIVISION query For every employee who works on every project that is located in Stafford: Find the ssn and lname. Sort the results by lname */

EMPLOYEE
Fname Minit Lname
John
Ssn
Bdate
Address
B Smith 123456789 1965-01-09 731 Fondren, Houston, TX M
333445555 1955-12-08 638 Voss, Houston, TX
999887777 1968-01-19 3321 Castle, Spring, TX
987654321 1941-06-20 291 Berry, Bellaire, TX
666884444 1962-09-15 975 Fire Oak, Humble, TX
453453453 1972-07-31 5631 Rice, Houston, TX
987987987 1969-03-29 980 Dallas, Houston, TX
888665555 1937-11-10 450 Stone, Houston, TX
Franklin T Wong
Alicia J Zelaya
Jennifer S Wallace
Ramesh K Narayan
Joyce A English
Ahmad V Jabbar
James E Borg
DEPARTMENT
Dname
Research
Administration
Headquarters
WORKS ON
Essn
123456789
123456789
666884444
453453453
453453453
333445555
333445555
333445555
333445555
999887777
999887777
987987987
987987987
987654321
987654321
888665555
Dnumber
5
4
1
Pno Hours
1
32.5
2
7.5
3
40.0
1
20.0
2
20.0
10.0
10.0
10.0
10.0
30 30.0
10 10.0
35.0
5.0
2
3
10
20
30
30 20.0
20
15.0
20 NULL
Mgr_ssn
333445555
987654321
888665555
DEPENDENT
Essn
333445555
333445555
333445555
987654321
123456789
123456789
123456789
Mgr_start_date
1988-05-22
1995-01-01
1981-06-19
PROJECT
Sex Salary
Pname
ProductX
ProductY
ProductZ
|Σ|Σ|u|
Alice
Theodore
Joy
Abner
Michael
Alice
Elizabeth
Super_ssn Dno
30000 333445555 5
M 40000 888665555 5
F
F
M
F
M
M
25000 987654321 4
43000 888665555
Pnumber
1
2
3
Computerization 10 Stafford
Reorganization
20
Houston
Newbenefits
30
Stafford
M
F
F
38000 333445555
25000 333445555
25000 987654321
55000 NULL
DEPT LOCATIONS
Dnumber
1
4
5
5
5
Bellaire
Sugarland
Houston
Dlocation
Houston
Stafford
Bellaire
445 A
Sugarland
Houston
Plocation Dnum
5
554
4
1
1
4
Dependent_name Sex Bdate Relationship
F
1986-04-05 Daughter
M
1983-10-25
Son
F
M
1958-05-03 Spouse
1942-02-28
Spouse
1988-01-04 Son
1988-12-30 Daughter
1967-05-05
Spouse
Transcribed Image Text:EMPLOYEE Fname Minit Lname John Ssn Bdate Address B Smith 123456789 1965-01-09 731 Fondren, Houston, TX M 333445555 1955-12-08 638 Voss, Houston, TX 999887777 1968-01-19 3321 Castle, Spring, TX 987654321 1941-06-20 291 Berry, Bellaire, TX 666884444 1962-09-15 975 Fire Oak, Humble, TX 453453453 1972-07-31 5631 Rice, Houston, TX 987987987 1969-03-29 980 Dallas, Houston, TX 888665555 1937-11-10 450 Stone, Houston, TX Franklin T Wong Alicia J Zelaya Jennifer S Wallace Ramesh K Narayan Joyce A English Ahmad V Jabbar James E Borg DEPARTMENT Dname Research Administration Headquarters WORKS ON Essn 123456789 123456789 666884444 453453453 453453453 333445555 333445555 333445555 333445555 999887777 999887777 987987987 987987987 987654321 987654321 888665555 Dnumber 5 4 1 Pno Hours 1 32.5 2 7.5 3 40.0 1 20.0 2 20.0 10.0 10.0 10.0 10.0 30 30.0 10 10.0 35.0 5.0 2 3 10 20 30 30 20.0 20 15.0 20 NULL Mgr_ssn 333445555 987654321 888665555 DEPENDENT Essn 333445555 333445555 333445555 987654321 123456789 123456789 123456789 Mgr_start_date 1988-05-22 1995-01-01 1981-06-19 PROJECT Sex Salary Pname ProductX ProductY ProductZ |Σ|Σ|u| Alice Theodore Joy Abner Michael Alice Elizabeth Super_ssn Dno 30000 333445555 5 M 40000 888665555 5 F F M F M M 25000 987654321 4 43000 888665555 Pnumber 1 2 3 Computerization 10 Stafford Reorganization 20 Houston Newbenefits 30 Stafford M F F 38000 333445555 25000 333445555 25000 987654321 55000 NULL DEPT LOCATIONS Dnumber 1 4 5 5 5 Bellaire Sugarland Houston Dlocation Houston Stafford Bellaire 445 A Sugarland Houston Plocation Dnum 5 554 4 1 1 4 Dependent_name Sex Bdate Relationship F 1986-04-05 Daughter M 1983-10-25 Son F M 1958-05-03 Spouse 1942-02-28 Spouse 1988-01-04 Son 1988-12-30 Daughter 1967-05-05 Spouse
Expert Solution
steps

Step by step

Solved in 2 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
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