Q. Suppose you have a table named to test and inside this table you have a column named CGPA now if you are asked to change the column named CGPA to total percentage, using alter command then which of the following statement you will write?
✅ Correct Answer: (A)
ALTER TABLE test CHANGE COLUMN 'cgpa’ 'total_percentage’ int;