Type your answer into the text box and click the
Submit button to submit your answer. Remember that you must submit all your responses to this exercise at once.
- Answer to question 1:
ALTER TABLE PETSTORE.PRODUCT DROP UNUSED COLUMNS;
ALTER TABLE EPET1.CUSTOMER_ACCOUNT DROP UNUSED COLUMNS;
ALTER TABLE WEBPETS.PRODUCT_INVENTORY DROP UNUSED COLUMNS;
- Answer to question 2:
First, mark the column as unused during the day. Second, at night or over the weekend, drop the column.
- Answer to question 3:
ALTER TABLE PRODUCT_INVENTORY SET UNUSED COLUMN CREATED_TIME;
ALTER TABLE PRODUCT_INVENTORY DROP UNUSED COLUMNS;