Sunday, March 11, 2012

Adding records

Hi
How do i simply add records to my Ms SQL database??
Does anyone have an example?
Best regards
/ErikSure. There are a lot of ways to do it, but the most common is to usethe INSERT INTO statement with data for each field in the table:
INSERT INTO MyTable (ItemID, Description) VALUES (43, 'ASP.NET application builder tool')
There are also variations, such as to insert data that exists in another table.
Don

No comments:

Post a Comment