Home Forums Programming XML Query to select records from Xml column RE: Query to select records from Xml column

  • SELECT r.value('@Value','int')

    FROM Job

    CROSS APPLY JobXml.nodes('/Job/TimeID') AS x(r)

    ____________________________________________________

    Deja View - The strange feeling that somewhere, sometime you've optimised this query before

    How to get the best help on a forum

    http://www.sqlservercentral.com/articles/Best+Practices/61537