Databases don't have a concept of order when inserting data. The data is stored in whatever location it will fit.
You can only define an order when you're reading data back out of the database using a SELECT query and you do that by using an ORDER BY clause in your query.
So if you want your data to display in a specific order, you MUST change your query to include an ORDER BY clause that specifies the ordering you want.