I have a last_update_date column defined as a DATE field
I want to get time in milliseconds.
I currently have:
TO_CHAR(last_update_date,'YYYY-DD-MM hh:mi:ss am')
But I also want to get milliseconds.
I did a bit of work on Google and I think that DATE fields will not have milliseconds. only TIMESTAMP fields.
Is there a way to get milliseconds? I have no way to change the data type for the field.
drake source share