i need to update some rows where there BF_ID is in an nvarchar @ArrBF ='1,3,5,7'
update BILL_FOLDERS_DATA
SET
BFD_Quantity = @CFD_Quantity
WHERE BFD_Path = @CFD_Path AND BF_ID IN (@ArrBF)
i get an error because i need to convert the array to integers. how can i achieve it?