How SQL Sever inserts n data at the same time without controlling in the program

Source: Internet
Author: User

Q: "How to insert n data at the same time, but not in the program control?" ”

A: "Because the SQL Sever does not support array parameters. So we can only use alternative methods. Use SQL Server powerful string handling to format the array as" 1,2,3,4,5,6 ".

Then in the stored procedure with the substring with charindex to separate.

Detailed stored procedures:

CREATE PROCEDURE dbo. Productlistupdatespeciallist
@ProductId_Array VarChar (800),
@ModuleId int
As
DECLARE @PointerPrev int
DECLARE @PointerCurr int
DECLARE @TId int
Set @PointerPrev =1
Set @PointerCurr =1
BEGIN TRANSACTION
Set NoCount on
Delete from productlistspecial where moduleid= @ModuleId
Set @PointerCurr =charindex
', ', @ProductId_Array, @PointerPrev + 1)
Set @TId =cast SUBSTRING (@ProductId_Array, @PointerPrev,
@PointerCurr-@PointerPrev) as int)
Insert into Productlistspecial
(Moduleid,productid) Values (@ModuleId, @TId)
SET @PointerPrev = @PointerCurr
while (@PointerPrev +1 < LEN (@ProductId_Array))
Begin
Set @PointerCurr =charindex
(', ', @ProductId_Array, @PointerPrev + 1)
if (@PointerCurr >0)
Begin
Set @TId =cast (SUBSTRING
(@ProductId_Array, @PointerPrev +1,
@PointerCurr-@PointerPrev-1) as int)
Insert into Productlistspecial
(Moduleid,productid) Values (@ModuleId, @TId)
SET @PointerPrev = @PointerCurr
End
Else
Break
End
Set @TId =cast (SUBSTRING
(@ProductId_Array, @PointerPrev +1,
LEN (@ProductId_Array)-@PointerPrev) as int)
Insert into Productlistspecial
(Moduleid,productid) Values (@ModuleId, @TId)
Set NoCount off
If @ @error =0
Begin
Commit TRANSACTION
End
Else
Begin
ROLLBACK TRANSACTION
End
Go

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.