DECLARE @myXml XML

 SET @myXml =  CONVERT(xml, '<a key="2"></a>', 1)

 SELECT  s.value('@key', 'VARCHAR(8000)')   AS myKey from   @myXml.nodes('/a')  t(s)

answer :

enter image description here

which is fine.

I want to do it without declaring the @myXml variable.

Something like :

 SELECT  
    s.value('@key', 'VARCHAR(8000)') AS myKey 
 FROM 
    CONVERT(xml, N'<a key="2"></a>', 1) .nodes('/a')  t(s)

but I get an error :

enter image description here

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can do:

Select CONVERT(xml, N'<a key="2"></a>', 1).value('a[1]/@key', 'varchar(8000)')
link|improve this answer
why is the [1] ???? – Royi Namir Jan 9 at 16:27
@Royi Namir: That limits you to one instance of the 'a' tag under the root. If you want more than one instance (if your real XML string is more complex than the one in your example) you'll need a different approach that actually shreds the XML like your first sample did (and mine, below, does). If there is just a single 'a' tag, kd7's approach will certainly be faster. – mwigdahl Jan 9 at 16:40
feedback

This should work:

;WITH xgen (xdata)
AS
(
    SELECT CONVERT(xml, '<a key="2"></a>', 1) AS xdata
)
select s.value('@key', 'VARCHAR(8000)')   AS myKey 
from xgen
    cross apply xgen.xdata.nodes('/a') t(s)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.