Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am pulling date data in from a SQL query and need it to be in MM/DD/YYYY, but it stays in SQL's default YYYY-MM-DD
I have tried:
date(DDATE)
date(DDATE, 'MM/DD/YYYY')
date(DDATE, 'MM-DD-YYYY')
date(date#(DDATE, 'YYYY-MM-DD'))
date(date#(DDATE, 'YYYYMMDD'))
To add to the craziness is that the line before this I have: date(DDATE)&Market as key, and the result is in MM/DD/YYYY
Any help would be awesome
date(num(DDATE) as DDATE produces the correct result as well.