Complete the code to add a new column named 'age' of type INT to the 'users' table.
ALTER TABLE users [1] COLUMN age INT;The ADD keyword is used to add a new column to an existing table.
Complete the code to remove the column 'age' from the 'users' table.
ALTER TABLE users [1] COLUMN age;The DROP keyword removes a column from a table.
Fix the error in the code to change the data type of the 'age' column to VARCHAR(3).
ALTER TABLE users [1] age VARCHAR(3);
The MODIFY keyword changes the data type or definition of an existing column.
Fill in the blank to rename the column 'age' to 'user_age' in the 'users' table.
ALTER TABLE users [1] age user_age VARCHAR(3);
The CHANGE keyword renames a column and can also change its type. You must specify the old column name and the new column name with the new type.
Fill all three blanks to add a new column 'email' of type VARCHAR(255) after the 'user_age' column.
ALTER TABLE users [1] COLUMN email VARCHAR(255) [2] [3] user_age;
Use ADD to add a new column, NOT NULL to make sure it cannot be empty, and AFTER to place it after a specific column.