2009-03-09 11 views
1

XQuery'yi kullanarak bir XML düğümünün iç metnini nasıl seçerim?XML İç Metin almak için SQL Server 2005'te XQuery'yi Kullanma

DECLARE @myDoc xml 
DECLARE @ProdID int 
SET @myDoc = '<Root> 
<ProductDescription ProductID="1" ProductName="Road Bike"> 
<Features> 
    <Warranty>1 year parts and labor</Warranty> 
    <Maintenance>3 year parts and labor extended maintenance is available</Maintenance> 
</Features> 
</ProductDescription> 
</Root>' 

SET @ProdID = @myDoc.value('(/Root/ProductDescription/@ProductID)[1]', 'int') 
SELECT @ProdID 

nasıl Garanti düğümün iç metin değeri alacağı:

Microsoft çevrimiçi nasıl aşağıda bir öznitelik alınamadı gösterir? Böyle

cevap

5

şey:

DECLARE @Warranty VARCHAR(50) 

SET @Warranty = @myDoc.value('(/Root/ProductDescription/Features/Warranty/text())[1]', 'varchar(50)') 

SELECT @Warranty 

Marc