Direction: Choose the correct option
Q1.
Which SQL statement modifies existing records?
Direction: Choose the correct option
Q2.
UPDATE students SET age = 20;What will this query do?Direction: Choose the correct option
Q3.
UPDATE products SET price = price * 1.10 WHERE category = 'Electronics';What does this query do?Direction: Choose the correct option
Q4.
What happens if you omit the WHERE clause in UPDATE?
Direction: Choose the correct option
Q5.
UPDATE employees SET salary = 50000, department = 'IT' WHERE id = 101;How many columns are being updated?