ALTER TABLEs without AFTER vs ALTER TABLEs with AFTER

151 Views Asked by At

Say I have these two ALTER TABLEs:

  1. ALTER TABLE tableName ADD COLUMN colName INT(11) AFTER colName2
  2. ALTER TABLE tableName ADD COLUMN colName INT (11)

Let's say tableName has 400 columns and one million rows. Should those ALTER TABLEs run at the same speed or should one be faster than the other?

1

There are 1 best solutions below

0
On BEST ANSWER

400 columns is terrible :)

In theory both variants will run in same time