I have a stored procedure that receives a (n) list of filters stored as GUIDs. What I need is a stored procedure that will receive an (n) list of an (n) list of filters so that I can return comparisons each (n) list of filters. Is this possible, and how would you script it?
For reference, the current user type looks like the following:
CREATE TYPE [dbo].[GuidList] AS TABLE(
[Value] [uniqueidentifier] NOT NULL,
PRIMARY KEY CLUSTERED
(
[Value] ASC
)WITH (IGNORE_DUP_KEY = OFF)
)