I have rows in a table in SQL Server 2008

Tell me please how select only unique years from table?
P.S.: in this table unique year is 2013
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the
YEARfunction, withDISTINCTlike this:SQL Fiddle Demo
This will give you:
To use the order by clause, give it an alias and order by this alias not the original name like this: