To join a table with function split to get values of a column from that table
SQL:
SELECT DISTINCT
item AS Alltags
FROM dbo.Feeds
CROSS APPLY dbo.fn_split(Tags, ',')
SELECT DISTINCT
item AS Alltags
FROM dbo.Feeds
CROSS APPLY dbo.fn_split(Tags, ',')
Comments
Post a Comment