比如提取某一年的记录
select * from Employee e where datepart(yy,e.LastLoginTime)=2009
返回2009年所有记录
select * from Employee e where datepart(mm,e.LastLoginTime)=12
返回12月份的所有记录
select * from Employee e where datepart(dd,e.LastLoginTime)=30
返回30号所有记录
SELECT * FROM Employee e WHERE datepart(mm,e.LastLoginTime)=12 AND datepart(yy,e.LastLoginTime)=2009
返回09年12月份的记录
性能上没有做测试。