how can it?
I found it for check column exists
(
SELECT 1 FROM Information_schema.columns
WHERE table_schema = 'db'
AND table_name = 'table'
AND column_name = 'the other column'
)
and add the column after the other column
ALTER TABLE 'table' ADD 'the column' VARCHAR(14) DEFAULT NULL AFTER 'the other column'