I want to add a column to preexisting table. Can I add it in between two existing columns? I am working on phpmyadmin.
I think this video can help you. With PHPMyAdmin
You can also do it via plain SQL, with a ALTER TABLE query:
ALTER TABLE mytable ADD column3 INT AFTER column1