[ ( column_name [,... column_name ] ) ]
VALUES
( value [,... value ] )
Insert new rows into a table
2005-2008r2
Insert a whole row into the Person table
INSERT INTO Person VALUES ('Brown', 'Joe', 35)
Insert a whole row into the Person table (with named columns)
INSERT INTO Person
(LastName, FirstName, Age)
VALUES
('Brown', 'Joe', 35)