下面的代码只返回 6 行,只有第一个值。我想要 6 行有各自的值
DECLARE @txml XML
SET @txml ='
<row ch="	" unicode_value="9" cnt="3" />
<row ch="
" unicode_value="10" cnt="5" />
<row ch="
" unicode_value="13" cnt="5" />
<row ch=" " unicode_value="32" cnt="962" />
<row ch="&" unicode_value="38" cnt="32" />
<row ch="(" unicode_value="40" cnt="8" />
'
SELECT x.value('(/row/@cnt)[1]', 'int') AS cnt
FROM @txml.nodes('/row') AS tbl( x )