I have a table that contains an xml column, my table looks like the following:
MyTable
Id(Pk, int,not null)
Name(varchar(50), not null)
Value(XML(.), not null)
The type of Value is XML
I've tried the following query and of course it is not working
/****** Script ******/
SELECT TOP 1000 [Id]
,[Name]
,[Value]
FROM [Value]
where Value like '%something%'
How can I get columns that contains something in their xml value