Snippets     

Find dates newer than one week ago
Description: Find dates newer than one week ago
Language: SQL
Category: MySql

# Find dates newer than one week ago
SELECT users FROM accounts
  WHERE created >=
        DATE_SUB(CURDATE(), INTERVAL 1 WEEK);
Back


  Copyright 2009 Isaac Roach iroach@gmail.com