Search⌘ K
AI Features

Solution: Add Some Data

Understand how to insert new records into database tables by using the INSERT INTO command. This lesson guides you step-by-step through adding data to a students table, helping you build foundational skills in modifying and populating SQL tables.

We'll cover the following...

Query

INSERT INTO students (id, name, grade) VALUES
(1, 'Ali', 85.5),
(2, 'Bilal', 92.0),
(3, 'Carmen', 78.3);

Explanation

This command adds (inserts) new rows of data into ...