Answers for "insert a record in sql"

SQL
2

sql insert into

Add new rows to a table.
Example: Adds a new vehicle.
INSERT INTO cars (make, model, mileage, year)
VALUES ('Audi', 'A3', 30000, 2016);
Posted by: Guest on January-07-2021
0

insert the values into table

INSERT INTO Persons (FirstName,LastName)
VALUES ('Lars','Monsen');
Posted by: Guest on October-22-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language