Created
March 14, 2012 19:31
-
-
Save Boztown/2038871 to your computer and use it in GitHub Desktop.
SQL: Date within 1 month
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 purchases WHERE company_id = 17 AND DATE_SUB(CURDATE(),INTERVAL 1 MONTH) <= created_at; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment