Hi I have a problem with regarding on split/pivot dates 
Here is my query
select Name
     , Start
     , End 
  from Employees 
 where Start >= '1/27/2014' 
   and End <= '1/31/2014'
And Sample Data would be like this 

What I want to do is to split/pivot all data by date range like this 

But I don't know how can i do this and if it is possible? 
Thank you.