We have a Netezza table that contains dates stored in a numeric YYYYMMDD format (eg 20090731).
What is the best Netezza syntax to use to convert this into date format?
eg
SELECT somefunction(20090731) as NZDATE
?
You can use this one as it's the best one.
SELECT TO_DATE('20090731','YYYYMMDD') as NZDATE