Discussion :: SQL Basics
- In SQL, which command(s) is(are) used to change a table's storage characteristics?
Answer : Option A
Explanation :
To change the structure of the table we use ALTER TABLE.
Sytax:
ALTER TABLE "table_name"
ADD "column_name" datatype
OR
ALTER TABLE "table_name"
DROP COLUMN "column_name"
etc..
Be The First To Comment