If you're interested in returning specific weekdays, you can also use the WeekDay() function, combined with the InStr() function. For example, to return Order Dates (from Northwind's Orders) which occurred on Monday, Tuesday or Friday, you could use this:
SELECT orders.*
FROM orders
WHERE (((InStr(" 2 3 6",Weekday([OrderDate])))>0));