我需要在使用插入命令时访问 SQL Server 中的数组。
@slted
具有 ( 1,2,3
) 之类的值,这些值用于插入编号。行数
alter proc usp_sltedAssign
@slted nvarchar, @curentMenuID bigint
as begin
insert into Table301 (FLD119,FLD232,FLD9)
values('1', @curentMenuID, @slted)
end