I have a table like below:

And the delete condition is:
delete from Employee only if the date is smaller than a specific date and no record is larger than that date
e.g.
- if the date is 3/8/2014, then only record with EmployeeID 3 will be removed as the record with EmployeeID 4 has date larger than 3/8/2014, and EmployeeID 5 won't be removed as the date is 3/9/2014
- if the date is 3/9/2014, then record with EmployeeID 3 and 5 will be removed, as the record with EmployeeID 4 has date larger than 3/9/2014
At first, I tried
delete from Employee where Date > @Date But the above SQL would delete all records wherever the date is smaller than the @Date
What amendments should be made to the above SQL?