A single row of data can be inserted in two ways:
INSERT INTO USERS(Id, FirstName, LastName)
VALUES (1, 'Mike', 'Jones');
Or
INSERT INTO USERS
VALUES (1, 'Mike', 'Jones');
Note that the second insert statement only allows the values in exactly the same order as the table columns whereas in...