Skip to content

Instantly share code, notes, and snippets.

@devluis
Created December 28, 2013 21:27
Show Gist options
  • Save devluis/8164411 to your computer and use it in GitHub Desktop.
Save devluis/8164411 to your computer and use it in GitHub Desktop.
Select SQL to return records in the last hour
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