Insert with SQL — CRUD with SQL Database
Add information into a SQL table. Our full CRUD article is out read it here: Create Read Update and Delete (CRUD) with SQL!
INSERT INTOtables_name(col_1, col_2, col_3)VALUES
('value_1', 'value_2', 'value_3')
Tiny tutorials delivered to you by Uniqtech. We are bootcamp and beginner friendly. Learn to code with us!
INSERT INTO table_name (column1, column2, column3, …)
VALUES (value1, value2, value3, …);