Last active
September 22, 2016 22:19
-
-
Save isidroamv/41df5dd2a2e323e6e3caf861651c2177 to your computer and use it in GitHub Desktop.
A SQL query to get Questions and Answers of StackOverflow website. This data is required on the exercise 5 of the book Building Machine Learning Systems With Python
This file contains 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
SELECT Id, Body, AcceptedAnswerId, Score, ParentId, CreationDate | |
FROM Posts | |
WHERE CreationDate BETWEEN '2014-01-01' AND '2017-01-01' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment