query oracle table by order of insertion/update
We have a table, log_table, that has a column, logdate of type date.
I know
- DATE fields on Oracle only store the data down to a seconds.
- I can use data type TIMESTAMP to store date with more precision.
I know
- DATE fields on Oracle only store the data down to a seconds.
- I can use data type TIMESTAMP to store date with more precision.
I have a requirement to return the rows in log_table ordered by time inserted/updated with more precision (milliseconds).
I do not think I can use ROWNUM or ROWID to accomplish my requirement.
Any Suggestions?
Hisham
0