I want to change the column positions of my database table without losing data.
For example:
Current table:
+----+------+-------+----------+
| id | name | email | password |
+----+------+-------+----------+
to
+----+----------+------+-------+
| id | password | name | email |
+----+----------+------+-------+
Try this: