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, ',')

Comments

Popular posts from this blog

TSQL To Get All the Names of tables and Databases whose data have changed in last 24 Hours

To Get All the Names of tables and Databases their data have changed in last 24 Hours And Backup those databases

Apply paging in procedure