Which statement will allow you to add a new column to an existing table?
ALTER TABLE tablename
ADD COLUMN columnname datatype;
Which statement will delete a column from a table?
ALTER TABLE table
DROP COLUMN columnname;
When creating a new column in a table, the …… COLUMN keyword is to be included in the ALTER TABLE statement.
ADD
The ALTER TABLE statement allows a user to?
Add, modify and remove columns to a table