Chapter 4 Exercise 72

72. Create an XQuery that retrieves the items with a price greater than $10.

SELECT Contents.query('
/shipment/Items/Item[Price>10]
') As ItemList
FROM ShippingInvoice
WHERE ShippingID=1;