Instruction: 1. Add 'name' column to 'movies' table. 2. Delete the added column. 3. Delete the table. 4. Rename the 'movies' table to 'netflix'.
ALTER TABLE movies ADD name varchar(30)
ALTER TABLE movies DROP COLUMN name
DROP TABLE movies
RENAME TABLE movies TO netflix
🡇
No comments:
Post a Comment