I created a table with 85 columns but I missed one column. The missed column should be the 57th one. I don\'t want to drop that table and create it again. I\'m looking to ed
Try this
ALTER TABLE tablename ADD column_name57 INT AFTER column_name56
See here