我在存储过程中有以下遗留代码......
CREATE PROCEDURE [dbo].[My_Proc]
-- Add the parameters for the stored procedure here
@ProductId int = 0,
@Attributes varchar(8000)
...
DECLARE Attribute_Cursor CURSOR FOR
select [value] from SC_Splitter(@Attributes,',');
但是,它说 SC_Splitter 未声明。还有另一种方法可以做到这一点吗?