In MySQL 5.0.51b on my Mac, ordinals beyond FIRST fail, as does BEFORE.
So,
ALTER TABLE my_contacts
ADD COLUMN phone VARCHAR(10) FOURTH;
fails altogether, as would
ALTER TABLE my_contacts
ADD COLUMN phone VARCHAR(10) BEFORE email;
Do these work with any other flavors or versions of MySQL?