If that is the way it resides in your database then that is the way it will come out.
But down the road if you have deleted rows and added rows and sequences get messed up then you might have:
Code:
SELECT lastName, firstName FROM test;
The database table test:
lastName firstName id
[deleted 1]
Marks Alex 2
Brown Kim 3
[deleted 4]
Carr James 5
Bow Tim 6
The query output in this case without an Order by:
lastName firstName
Marks Alex
Brown Kim
Carr James
Bow Tim