What would be the fastest way to add a new column in a large mysql table ?
Alter table add column creates a copy of the full table, and then replaces the old one with the new create table. While this process is running, the original table is readable, but all inserts and updates are stalled.
On large tables, the copy can take a long time, is there any way to reduce it ?