Skip
Arish's avatar

233. Practice - INSERT


Exercise: Insert Student

Add a student named Bob, age 15.

Solution

sql
1INSERT INTO students (id, name, age)
2VALUES (2, 'Bob', 15);