Last active
November 26, 2017 01:44
-
-
Save crystalattice/2bdecff6f95e5436a73f3cb4a9d945c2 to your computer and use it in GitHub Desktop.
Unit 1, Lesson 2, Project 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --part 1 | |
| SELECT | |
| trip_id, | |
| duration | |
| FROM | |
| trips | |
| ORDER BY duration DESC | |
| LIMIT 5 | |
| --part 2 | |
| SELECT | |
| * | |
| FROM | |
| stations | |
| WHERE station_id = 84 | |
| --part 3 | |
| SELECT | |
| mintemperaturef | |
| FROM | |
| weather | |
| WHERE | |
| Events LIKE "Rain" AND | |
| ZIP = 94301 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment