ALTER TABLE student
ADD DOB varchar(255);
CHANGE DOB DATE_OF_BIRTH varchar(266);
DROP COLUMN DATE_OF_BIRTH;
0 Comments