Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is probably a simple where clause but I want to say, from columnX (which is datetime) I want all rows where just the year = 2010.

so:

select * from mytable where Columnx =
share|improve this question
Some extra info: stackoverflow.com/questions/7870943/… – Simon Mar 27 '12 at 14:03

4 Answers

up vote 5 down vote accepted
select * from mytable where year(Columnx) = 2010

Regarding index usage (answering Simon's comment):

if you have an index on Columnx, SQLServer WON'T use it if you use the function "year" (or any other function).

There are two possible solutions for it, one is doing the search by interval like Columnx>='01012010' and Columnx<='31122010' and another one is to create a calculated column with the year(Columnx) expression, index it, and then do the filter on this new column

share|improve this answer
If the performance is not up to scratch, i think this method doesnt make use of any indexes on the Columnx column – Simon Mar 27 '12 at 14:06
1  
@simon - You are right, wrapping a column in a function makes it non-sargable. This results in a full scan. I would not ever do this. It is very poor practice for filtering dates. I highly recommend the OP looks at your answer. – Dems Mar 27 '12 at 14:10
Hi @simon, thanks for you comment, I added more explanations on the matter. I just didn't do it before because since the OP is having very simple issues with a Year() function, I didn't imagine he would be worrying about indexes usage at this point. – Diego Mar 27 '12 at 14:18
@Demns, appreciate your comment, but saying things like "I would never do that" is also relative. We don't know the OP's reality. Maybe he is querying a "holidays" tables that has only dozens of rows. Silly example, I know, but It could be real. So, do you really think he needs to worry about this detail in such a small table? – Diego Mar 27 '12 at 14:24
@Diego - Point taken. I still would do it Simon's way, as I believe that keeping to certain best-practices in all cases means you can rely on getting it right when necessary. >= X and < Y covers you from alsorts of unexpected logical and performance problems. – Dems Mar 27 '12 at 14:58
show 1 more comment

If i understand that you want all rows in the year 2010, then:

select * 
  from mytable 
 where Columnx >= '2010-01-01 00:00:00' 
       and Columnx < '2011-01-01 00:00:00'
share|improve this answer
2  
+1 - Does what the OP wants and makes use of indexes for a range seek, which can be orders of magnitude faster than the other answers here so far. – Dems Mar 27 '12 at 14:12
1  
Yes, +1 for allowing the use of indexes. You could also simplify the condition to: where Columnx >= '2010-01-01' and Columnx < '2011-01-01' (without any difference in efficiency, just a few characters of code less :) – ypercube Apr 21 at 18:08

T-SQL and others;

select * from t where year(Columnx) = 2010
share|improve this answer
1  
Wrapping a column in a function makes it non-sargable. This results in a full scan. I would not ever do this. It is very poor practice for filtering dates. I highly recommend the OP looks at @simon answer. – Dems Mar 27 '12 at 14:11

its just simple

  select * from myTable where year(columnX) = 2010
share|improve this answer
Wrapping a column in a function makes it non-sargable. This results in a full scan. I would not ever do this. It is very poor practice for filtering dates. I highly recommend the OP looks at @simon answer. – Dems Mar 27 '12 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.