简体   繁体   中英

Filter an XML column in SQL Server

I have an xml type column productsXML in product table

Create Table Product
(
ProductId Int
productsXML XML
)
Insert Into Product Values (1,'<products><productInfo><Item>Car</Item></productInfo><products>'),
                           (2,'<products><productInfo><Item>Train</Item></productInfo><products>'),
                           (3,'<products></products>')
ProductId productsXML
1         <products><productInfo><Item>Car</Item></productInfo><products>
2         <products><productInfo><Item>Train</Item></productInfo><products>
3         <products></products>

I want to find all the rows that have <products></products>

I tried this:

Select *
From products
Where productsxml.exist('/products')=1

This is giving me all the rows that have products tag and understandably so. Is there a way to filter only those rows that have <products></products>

PLease try the following solution.

It is checking that the root products element has no child elements.

SQL

DECLARE @tbl TABLE (ProductId int primary key, productsXML XML);
INSERT INTO @tbl (ProductId, productsXML) VALUES
(1,'<products><productInfo><Item>Car</Item></productInfo></products>'),
(2,'<products><productInfo><Item>Train</Item></productInfo></products>'),
(3,'<products></products>');

SELECT * 
FROM @tbl
Where productsxml.exist('/products[not(*)]')=1

Output

+-----------+--------------+
| ProductId | productsXML  |
+-----------+--------------+
|         3 | <products /> |
+-----------+--------------+

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM