I am writing a query in which I have to get the data for only the last year. What is the best way to do this?
SELECT ... FROM ... WHERE date > '8/27/2007 12:00:00 AM'
|
I am writing a query in which I have to get the data for only the last year. What is the best way to do this?
|
||||
|
|
|
The following adds -1 years to the current date:
|
|||
|
|
|
argument for DATEADD function :
datepart can be: yy, qq, mm, dy, dd, wk, dw, hh, mi, ss, ms number is an expression that can be resolved to an int that is added to a datepart of date date is an expression that can be resolved to a time, date, smalldatetime, datetime, datetime2, or datetimeoffset value. |
||||
|
|
|
GETDATE() returns current date and time. If last year starts in midnight of current day last year (like in original example) you should use something like:
|
|||
|
|
|
Well, I think something is missing here. User wants to get data from the last year and not from the last 365 days. There is a huge diference. In my opinion, data from the last year is every data from 2007 (if I am in 2008 now). So the right answer would be:
Then, if you want to restrict this query, you can add some other filter, but always searching in the last year
|
|||
|
|
The most readable, IMO:
Which:
There's variants with DATEDIFF and DATEADD to get you midnight of today, but they tend to be rather obtuse (though slightly better on performance - not that you'd notice compared to the reads required to fetch the data). |
|||
|
|
|
The other suggestions are good if you have "SQL only". However I suggest, that - if possible - you calculate the date in your program and insert it as string in the SQL query. At least for for big tables (i.e. several million rows, maybe combined with joins) that will give you a considerable speed improvement as the optimizer can work with that much better. |
|||||
|
|
I found this page while looking for a solution that would help me select results from a prior calendar year. Most of the results shown above seem to return items from the past 365 days, which didn't work for me. At the same time, it did give me enough direction to solve my needs in the following code - which I'm posting here for any others who have the same need as mine and who may come across this page in searching for a solution. SELECT ... FROM ... WHERE year(your date column) = year(DATEADD(year,-1,getdate())) Thanks to those above who's solutions helped me arrive at what I needed. |
|||
|
|
|
|||||||
|