Solved

Given the Relation Employees Containing the Attributes Name,Address,and CurrentJobID and the Relation

Question 26

Short Answer

Given the relation Employees containing the attributes Name,Address,and CurrentJobID and the relation Jobs containing the attributes JobID,SkillRating,Department,what question is answered by the following SQL statement?
SELECT SkillRating
FROM Employees,Jobs
WHERE Employees.Name = "Joe Smith"
AND Employees.CurrentJobID = Jobs.JobID

Correct Answer:

verifed

Verified

What is th...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions