Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

टीएसक्यूएल श्रेड एक्सएमएल - नेमस्पेस के साथ काम करना

DECLARE @x XML;
with xmlnamespaces ('http://www.w3.org/2001/XMLSchema-instance' as xsi
    , 'http://www.w3.org/2001/XMLSchema' as xsd
    , 'http://example.com/ns' as ns) 
SELECT @x = (
    SELECT 
        ProductID
      , Name
      , Color
      , UserEntered
      , XmlField.query('
            for $vehicle in //auto
            return <auto 
                type = "{$vehicle/ns:type}"
                wheels = "{$vehicle/ns:wheels}"
                doors = "{$vehicle/ns:doors}"
                cylinders = "{$vehicle/ns:cylinders}"
            />')
    FROM @table1 table1
    WHERE Name = 'auto'
    FOR XML AUTO
)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. एसएसआईएस डेटा प्रवाह कार्य में गतिशील रूप से नामित तालिका का उपयोग करना

  2. एसक्यूएल ग्रुप बाय - सिंगल कॉलम से कई एग्रीगेट कॉलम जेनरेट करें

  3. पूर्ण-पाठ अनुक्रमण विकल्प को धूसर क्यों किया जाता है?

  4. java.lang.ClassNotFoundException:com.microsoft.jdbc.sqlserver.SQLServerDriver:क्या मैं सही ड्राइवर लोड कर रहा हूँ?

  5. MDF फ़ाइल को SQL सर्वर से कनेक्ट करने के 3 तरीके