Consider the Goldstar database and the query below. What will the query display? SELECT city, COUNT(performance) AS TotalEmployees FROM location, employee WHERE location.location_id = employee.location_id GROUP BY city; ?
The total number of employees in each city that have NOT received performance ratings
The total number of employees in each city
The total number of employees in each city that have received performance ratings
None of the other answers provided is correct
The query output will be:
The total number of employees in each city that have received performance ratings
Explanation
Let me know in the comments if anything is not clear. I will reply ASAP! Please do upvote if satisfied!
Get Answers For Free
Most questions answered within 1 hours.