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

Sunday, July 17, 2016

SQL: Table Transformation Lesson 3 Sample Solution


Instruction:
Find flight information about flights where the Federal Aviation Administration region (faa_region) is the Southern region (ASO).

Sample Solution:
SELECT * FROM flights WHERE origin in
(SELECT code FROM airports WHERE faa_region = 'ASO');

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts