• You have a difference, but it's just by one day.

    The easiest way to test this is to run a query against a calendar table that will return all dates and one row per date.

    select * from theTable

    where

    Date_Created

    between dateadd(day,-372,'2013-12-25') and dateadd(day,-364,'2013-12-25')

    ORDER BY Date_Created

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2