以下のコードは、最初の値のみを含む 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 )