The codes I used is returning an error
Screen Link: Learn data science with Python and R projects
My Code:
SELECT *
FROM employee
WHERE (SUBSTRING(hire_date, 1, 4) = '2017'
AND (LENGTH(first_name) = 5 OR (first_name)= 6)
);
I expected it to filter the hire_date based on 2017, but it keeps filtering 1985. Kindly help please!