Insert (SQL),”The insert statement is used to insert or add a row of data into the table.General: insert into “”tablename”” (first_column,…last_column) values (first_value,…last_value);ex. insert into employee (first, last, age, address, city, state) values (‘Luke’, ‘Duke’, 45, ‘2130 Boars Nest’, ‘Hazard Co’
‘Georgia’);Note: All strings should be enclosed between single quotes: ‘string'”