Quotes help make search much faster. Example: "Practice Makes Perfect"

Sunday, July 17, 2016

SQL: Table Transformation Lesson 2 Sample Solution


Instruction:
Find flight information about flights where the origin elevation is less than 2000 feet.

Sample Solution:
SELECT * FROM flights WHERE origin in
(SELECT code FROM airports WHERE elevation < 2000);

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts