How to add new column in specific position
scottjhnOct 14 2012 — edited Oct 15 2012Say, a table has existing columns of A, B, D, and E.
Now I want to add a new column C. But I want this column appear between B and D. I found that the newly added column always goes to the end of the table, i.e., A, B, D, E, C, instead of, A, B, C, D, E.
How can I do it?