May 2020
Beginner
564 pages
14h 9m
English
To insert a single row into a table in MySQL, use the following syntax:
INSERT INTO lahmansbaseballdb.collegeplaying (`playerID`, `schoolID`, `yearID`) VALUES (<{playerID: }>, <{schoolID: }>, <{yearID: }>);
You can get this syntax by taking the following steps:
This places the INSERT syntax for that table into a SQL query window:

The INSERT statement allows you to add values to the collegeplaying table. To make the query insert proper values into a row in the collegeplaying table, you need to add values to the VALUES statement, ...
Read now
Unlock full access