Which of the following queries will change the data type of an existing column (phone) to the VARCHAR data type?
a) ALTER TABLE employees MODIFY COLUMN phone VARCHAR;
b) ALTER TABLE employees CHANGE COLUMN phone VARCHAR(255);
c) ALTER TABLE employees ALTER COLUMN phone VARCHAR;
d) ALTER TABLE employees MODIFY phone VARCHAR(255);