Complete the code to create a new table named 'students' with columns 'id' and 'name'.
CREATE TABLE [1] (id INT, name VARCHAR(50));
The correct table name is 'students' as specified in the instruction.
Complete the code to add a new column 'email' of type VARCHAR(100) to the 'students' table.
ALTER TABLE students [1] email VARCHAR(100);
To add a new column, the correct keyword is ADD.
Fix the error in the code to drop the 'email' column from the 'students' table.
ALTER TABLE students [1] COLUMN email;The correct keyword to remove a column is DROP COLUMN.
Fill both blanks to rename the table 'students' to 'alumni'.
ALTER TABLE [1] [2] TO alumni;
The syntax to rename a table is: ALTER TABLE old_name RENAME TO new_name;
Fill all three blanks to create a table 'courses' with columns 'course_id' (INT) and 'course_name' (VARCHAR(100)).
CREATE TABLE [1] ([2] INT, [3] VARCHAR(100));
The table name is 'courses'. The columns are 'course_id' of type INT and 'course_name' of type VARCHAR(100).