Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding solutions of the exercises - challenge 1 #48

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

franc1sc0sv
Copy link

No description provided.

Comment on lines +189 to +200
SELECT
e.uuid,
CONCAT(e.first_name, ' ', e.last_name) AS full_name,
e.email,
e.job_title,
o.name AS office_name,
co.name AS country_name,
s.name AS state_name
FROM employees e
INNER JOIN offices o ON e.office_id = o.id
INNER JOIN states s ON o.state_id = s.id
INNER JOIN countries co ON s.country_id = co.id;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the query doesn't return the boss name of an employee

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants