พิจารณา XML อย่างง่ายต่อไปนี้:
<xml>
<customer name="Max">
<email address="me@you.com" />
</customer>
<customer name="Erik">
<email address="erik@your-mom.com" />
</customer>
<customer name="Brent">
<email address="brentcom" />
</customer>
</xml>
ฉันต้องการที่จะได้รับรายชื่อของ<Customer>
ลำดับที่address
แอตทริบิวต์ของ<email>
รายการไม่ได้@
ประกอบด้วย
ดังนั้นฉันต้องการผลลัพธ์ที่ดูเหมือน:
<customer name="Brent">
<email address="brentcom" />
</customer>
mcve :
DECLARE @x XML = '<xml>
<customer name="Max"><email address="me@you.com" /></customer>
<customer name="Erik"><email address="erik@your-mom.com" /></customer>
<customer name="Brent"><email address="brentcom" /></customer>
</xml>';
แบบสอบถามนี้:
SELECT WithValidEmail = @x.query('/xml/customer/email[contains(@address, "@")]')
, WithInvalidEmail = @x.query('/xml/customer/email[contains(@address, "@")] = False');
ผลตอบแทน:
╔═══════════════════════════════════════╦══════════════════╗
║ WithValidEmail ║ WithInvalidEmail ║
╠═══════════════════════════════════════╬══════════════════╣
║ <email address="me@you.com" /> ║ ║
║ <email address="erik@your-mom.com" /> ║ false ║
╚═══════════════════════════════════════╩══════════════════╝
แบบสอบถามนี้:
SELECT WithInValidEmail = @x.query('/xml/customer/email')
WHERE @x.exist('/xml/customer/email[contains(@address, "@")]') = 0;
ผลตอบแทน:
╔══════════════════╗
║ WithInValidEmail ║
╚══════════════════╝
(no results)
ส่วนWHERE
คำสั่งในแบบสอบถามด้านบนกำลังกำจัดชุด XML ทั้งหมดเนื่องจากอย่างน้อยมีลำดับเดียวที่มีที่อยู่อีเมลที่มีเครื่องหมาย "@"