Exercise: Insert Student Add a student named Bob, age 15. Solution sqlCopy1INSERT INTO students (id, name, age) 2VALUES (2, 'Bob', 15);