Question
Subject: Distributed Databasebe Please solve all parts as this is single qs and both parts are related. Solve it when you are sure about both.
Subject: Distributed Databasebe
Please solve all parts as this is single qs and both parts are related. Solve it when you are sure about both.
Q.No.3. (Marks 10)
A.
Draw query graph and join graph for the given query
SELECT ENAME, RESP
FROM EMP, ASG, PROJ
WHERE EMP.ENO = ASG.ENO
AND ASG.PNO = PROJ.PNO
AND PNAME = "CAD/CAM"
AND DUR 36
AND TITLE = "Programmer"
B.
Simplify the given query
SELECT TITLE
FROM EMP
WHERE EMP.ENAME = "J. Doe"
OR (NOT (EMP.TITLE = "Programmer")
AND (EMP.TITLE = "Programmer"
OR EMP.TITLE = "Elect. Eng.")
AND NOT (EMP.TITLE = "Elect. Eng."))
C.
Make query tree for the given query and also identify project, select and join
SELECT ENAME
FROM EMP, ASG, PROJ
WHERE EMP.ENO = ASG.ENO
AND ASG.PNO = PROJ.PNO
AND ENAME "J. Doe"
AND PNAME = "CAD/CAM"
AND (DUR = 12 OR DUR = 24)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started