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
I tried to alter the table like so:
table_name add column column_name after column column_name;
The first column_name is the new column name, the second column_name is the existing column where you plan to insert into after.
column_name