lighthearted26
New member
Anyone on here really good with SQL and query statements? I saw someone mention it earlier. I have this take home test and I am stumped on a few. Ill just ask one though,
Write a query statement for this:
Provide an alphabetical list of employee last names, job titles, and the city where they work, grouped by city.
My answer is
SELECT last_name, job_title, city
FROM. hr.employees
GROUP BY city
Is this right?
Write a query statement for this:
Provide an alphabetical list of employee last names, job titles, and the city where they work, grouped by city.
My answer is
SELECT last_name, job_title, city
FROM. hr.employees
GROUP BY city
Is this right?