You could use the MAX() or MIN() aggregation function. You'll have to do this for all fields selected that aren't grouped such as:
SELECT name, MAX(day_phone), MAX(Cell_phone), MAX(After_hours)
GROUP BY name
Although I would make the argument that there is no point in storing more than one number for a given type of you are going to simply ignore all but one of them. Database normalization rules would also suggest that you should put all the phone numbers in a single column in a "phone numbers" table and specify the type of each one. This might make the data easier to work with as well.
-Peter
compiledthoughts.com