Create a list item
Creates a new item in a list. Replace MyList with your list name and specify the columns to populate.
INSERT INTO MyList(Name, Surname)
VALUES ('John', 'Doe') WITH (Output=1)
Creates a new item in a list. Replace MyList with your list name and specify the columns to populate.
INSERT INTO MyList(Name, Surname)
VALUES ('John', 'Doe') WITH (Output=1)