Suppose I have a table Emp
with emp_id
, emp_name
. I insert 3 entries in the table - (1,A) (2,B) (3,C)
.
I do not create any primary key nor add any indexes.
Now, when I run a select * statement
, will the data be displayed as (1,A),(2,B),(3,C)
every time or is there a possibility for the output to be (2,B), (1,A), (3,C)
or in other variations.