All, Let's say the SQL looks like below.
Select a, b ,c from table1 order by c
If all the rows in table1
have the same field value in the field c. I want to know if the result has the same order for each time I executed the SQL.
Let's say data in the table1
looks like below.
a b c
-------------------------------------------
1 x1 2014-4-1
....
100 x100 2014-4-1
....
1000 x1000 2014-4-1
....
How Oracle determine the rows sequence for the same order by value?
Added
Will they be random sequence for each time?