The Original SQL Statement is:
SELECT SA.[RequestStartDate] as \'Service Start Date\', SA.[RequestEndDate] as \'Service End Date\', FROM (......)SA WHER
There's also another way to do this-
select TO_CHAR(SA.[RequestStartDate] , 'DD/MM/YYYY') as RequestStartDate from ... ;