Direction: Choose the correct option
Q1.
Which SQL command is used to modify database structure?
Direction: Choose the correct option
Q2.
ALTER TABLE customers ADD COLUMN phone VARCHAR(15);What does this query do?Direction: Choose the correct option
Q3.
How do you remove a column from an existing table?
Direction: Choose the correct option
Q4.
ALTER TABLE employees MODIFY COLUMN salary DECIMAL(12,2);What is this doing?Direction: Choose the correct option
Q5.
ALTER TABLE students RENAME COLUMN name TO full_name;What does this query accomplish?