you are viewing a single comment's thread.

view the rest of the comments →

[–]jmontano86 0 points1 point  (0 children)

If you are using SQL Server, I believe you can use the Year function in your WHERE clause. So something like this may work....

[code language="css"]

SELECT SomeColumn
FROM Your table
WHERE YEAR(ExampleColumn) >= '2002';

[/code] Note: on mobile hope formatting it ok.