I have a list of number 1,30,40,45,60 . These numbers are not being changed so I don't need to keep in a table. So have to create a after insert trigger for
As
Begin
@list = 1,30,40,45,60 // Array value
for i=1 to @list.count
Insert into mappingtable(arrayvalue,itemcode) values (list[i],Inserted.Itemcode)
Next
End
Please can you help with a code
Regards
Pol
polachan