Challenge: Recently Hired Employees
Swipe to start coding
List all employees who were hired in the last 6 months using a subquery. Use the employees table and filter by hire_date so that only those hired within the last 6 months (relative to the current date) are included. The subquery should determine the date 6 months before the current date.
- Use a subquery to calculate the cutoff date as 6 months before the current date.
- Select all columns from the
employeestable for employees with ahire_dateon or after this cutoff date. - Only include employees who meet this recent hire date criteria.
Solution
Thanks for your feedback!
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Can you explain this in simpler terms?
What are the main points I should remember?
Can you give me an example?
Awesome!
Completion rate improved to 5.56
Challenge: Recently Hired Employees
Swipe to show menu
Swipe to start coding
List all employees who were hired in the last 6 months using a subquery. Use the employees table and filter by hire_date so that only those hired within the last 6 months (relative to the current date) are included. The subquery should determine the date 6 months before the current date.
- Use a subquery to calculate the cutoff date as 6 months before the current date.
- Select all columns from the
employeestable for employees with ahire_dateon or after this cutoff date. - Only include employees who meet this recent hire date criteria.
Solution
Thanks for your feedback!
single