Screen Link:
https://app.dataquest.io/m/2000586/filtering-ii-—-complex-expressions-assessment/4/question-4
What actually happened:
I would like to know the solution to the Complexity Expression Assessment
Screen Link:
https://app.dataquest.io/m/2000586/filtering-ii-—-complex-expressions-assessment/4/question-4
What actually happened:
I would like to know the solution to the Complexity Expression Assessment
Welcome to the Community!
Solution:
SELECT name
FROM track
WHERE milliseconds<60000
OR milliseconds>=3600000;
Thanks Elena. I was later able to figure it out after several tries.
SELECT *
FROM track
WHERE milliseconds<=59999
OR milliseconds >=3600000;