Below is the code I used but for some reason it does not work for the question being asked
(Using the same pattern from the example above, find flight information about flights where the origin elevation is less than 2000 feet.)
To me it seemed it like just changing the comparison expression to smaller than.
Does any one know how what is being asked and how to perform the code?
SELECT *
FROM flights WHERE origin in (
SELECT code
FROM airports
WHERE elevation < 2000);
<In this course, it often helps to include a screenshot of your whole web browser – that lets everyone see what you see. If you wish to include a screenshot, add it below this line.>
<If you wish to copy/paste in your code, you can use this next section. This will allow others to copy/paste your code for testing – something that they won’t be able to do with just a screenshot.>
Thanks guys for having a look .
It’s weird , I had to restart the browser and the exact code worked .this keeps happening even with the other questions .it makes you wonder if weather the code was correct