Created
December 28, 2013 21:27
-
-
Save devluis/8164411 to your computer and use it in GitHub Desktop.
Select SQL to return records in the last hour
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
SELECT * | |
FROM tbl_name | |
WHERE creation_time > DATE_SUB(NOW(),INTERVAL 1 HOUR) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment