Is it possible to reorder rows in SQL database? For example; how can I swap the order of 2nd row and 3rd row\'s values?
The order of the row is important to me since
The order of the rows on the actual database should not matter.
You should use the ORDER BY clause in your queries to order them as you need.