In SQL, which command(s) is(are) used to change a table’s storage characteristics?(a) ALTER TABLE(b) MODIFY TABLE(c) CHANGE TABLE(d) All of the Mentioned
Right answer is (a) ALTER TABLEThe explanation: To change the structure of the table we use ALTER TABLE Syntax:ALTER TABLE “table_name” ADD “column_name” datatypeORALTER TABLE “table_name” DROP COLUMN “column_name”.