When for example use flat files, and i add data, the data add and i can show in the loop, but also i can rewrite the data and change position inside flat file, for example :
Position 0 : Data_1 Position 1 : Data_2 Position 2 : Data_3 Position 3 : Data_4 Position 4 : Data_5
In MySQL i see the same, add data and you can show as order by ID, Nmae or other values you can order inside MySQL table, but also i can update for example ID Col and order data by ID.
But my question it´s about if it´s possible change the order inside Table for MySQL, as in the other example with Flat file we can see the data it´s storage when save and in MySQL also it´s the same but in MySQL i don´t know if it´s possible change this for show for example as in Flat Files and don´t use other things
For example if in PhpMyAdmin i see my values as this :
Position 0 : Data_1
Position 1 : Data_2
Position 2 : Data_3
Position 3 : Data_4
Position 4 : Data_5
** How Change for see and show as this :**
Position 0 : Data_3
Position 1 : Data_2
Position 2 : Data_1
Position 3 : Data_5
Position 4 : Data_4
As you can see the internal order it´s the same but rows position change in internal mode, and don´t need order By ID, etc.
This it´s my question, if it´s possible re order internal positions and don´t use order by Id, name or other values i use in the Table.