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
Use ORDER BY in your SELECT query. For example, to order by a user's last name, use:
ORDER BY
SELECT
SELECT * FROM User ORDER BY LastName