( SELECT CONVERT(VARCHAR(30),it.EndDate,101))[end]
will return date as 06/17/2013
and
(SELECT CONVERT(VARCHAR(30),it.StartDate) )[start]
will return date as Jun 17 2013 2:00PM
and I need date in the following format 06/17/2013 2:00 PM("/" is important)
. Can you please help me on this