Hello donaldt
As I understood, you would like to query the data based on year.
Since Northwind database comes with all the copies of SQL server 2000, I will use that database to do this query.
--------------------------------------------------------
USE Northwind
SELECT * FROM Employees WHERE YEAR(HireDate) = '1993'
--------------------------------------------------------
I hope this answer helped you on your project. If you have problems understanding something, I will be glad to assist you.
All the best,