Solution: Add Some Data
Understand how to add data to your SQL tables by using the INSERT INTO statement. This lesson teaches you to specify columns and insert multiple rows, enhancing your ability to create and modify tables in a database.
We'll cover the following...
We'll cover the following...
...
INSERT INTO students (id, name, grade) VALUES(1, 'Ali', 85.5),(2, 'Bilal', 92.0),(3, 'Carmen', 78.3);
...