I have a column called data_time (varchar) and there are about 200 thousand rows. I would like to convert those rows to ordinary date/time instead.
I have tried this with no luck.
example value in a row: 927691200000000
SELECT * TO_DATE('19700101',yyyymmdd') + ((date_time/1000)/24/60/60) thedate 2 FROM table1
I am new to SQL and help is appreciated!
Thank you.
*and the2are both errors). Whatdatedoes the number you provided represent?