I have a column named StartDate containing a date in this format: 03-03-2012 15:22
StartDate
03-03-2012 15:22
What I need is to convert it to date. It should be looki
Try
SELECT to_char(p1.PA_VALUE,'DD/MM/YYYY') as StartDate, to_char(p2.PA_VALUE,'DD/MM/YYYY') as EndDate ...