Unfortunately access doesnt allow for the "normal" route most big boy's databases allow, so in access you need to make a 2 step query
1)
Select distinct SeatNumber, EmpID, Month from yourTable
Of if you are intrested in the numbers
Select SeatNumber, EmpID, Month, count(*) as theCount from...