Skip to content
Advertisement

Returning data from XML data in a column in a SQL Server database

Trying to extract data from a column in a SQL Server table. The column however is not of type XML but the data is in XML format (see below). I can extract the data I need via the CAST function, but looking to see if there’s a more efficient query to do so.

The data below exists in the details column of table FoodTable. I would like to query the table to get a list of all ‘prod’ (i.e. apple, blueberry, cherry) from <FoodCity>. The data is much larger in reality so would like help with more efficient query if possible.

I have the following:

XML looks like this:

Although my query above works, just looking to make it more efficient and simpler if possible.

Output expected | product |

| apple | | blueberry | | cherry |

Thank you.

Advertisement

Answer

While waiting for your DDL and sample data population. Here is a conceptual example.

It is using XQuery methods .nodes() and .value() to shred XML and convert it into a rectangular/relational format.

SQL

Output

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement