Below you will find my SQL query
select campaign, startdate
from t1
I have in the column startdate values that look like this: yyyymmddhhmmss (e.g.
20170806040000).
I want that the date above shows in my query like this: mm/dd/yyyy (e.g. 08/06/2017).
Unfortunately I am not sure how I have to change my select condition. I tried hundreds of different combinations. However, it is not working. I hope that you guys can help me.