We have function that create creates a table variable that you can join to:
ALTER FUNCTION [dbo].[fn_sqllist_to_table](@list as varchar(8000), @delim as varchar(10))
RETURNS @listTable table(
Position int,
Value varchar(8000)
)
AS
BEGIN
declare @myPos int
set @myPos = 1
while charindex(@delim, @list) > 0
begin
insert into @listTable(Position,Value)
values(@myPos, left(@list, charindex(@delim, @list) - 1))
set @myPos = @myPos + 1
if charindex(@delim, @list) = len(@list)
insert into @listTable(Position, Value)
values(@myPos, '')
set @list = right(@list, len(@list) - charindex(@delim, @list))
end
if len(@list) > 0
insert into @listTable(Position, Value)
values(@myPos, @list)
Return
So:
@Name varchar(8000) = null // parameter for search values
select * from Tags
where Name in (SELECT value From fn_sqllist_to_table(@Name,',')))
order by Count desc
