いくつかの列を持つテーブルがあり、そのうちの 1 つはxml
列です。クエリで使用する名前空間がありません。XML データは、すべてのレコードで常に同じ構造です。
人為的データ
create table #temp (id int, name varchar(32), xml_data xml)
insert into #temp values
(1, 'one', '<data><info x="42" y="99">Red</info></data>'),
(2, 'two', '<data><info x="27" y="72">Blue</info></data>'),
(3, 'three', '<data><info x="16" y="51">Green</info></data>'),
(4, 'four', '<data><info x="12" y="37">Yellow</info></data>')
望ましい結果
Name Info.x Info.y Info
----- ------- ------- -------
one 42 99 Red
two 27 72 Blue
three 16 51 Green
four 12 37 Yellow
部分的に動作します
select Name, xml_data.query('/data/info/.').value('.', 'varchar(10)') as [Info]
from #temp
Name
列と列を返しInfo
ます。名前空間を使用せずに属性値を抽出する方法がわかりません。たとえば、次のクエリはエラーを返します。
クエリ 1
select Name, xml_data.query('/data/info/@x') as [Info]
from #temp
Msg 2396, Level 16, State 1, Line 12
XQuery [#temp.xml_data.query()]: Attribute may not appear outside of an element
クエリ 2
select Name, xml_data.value('/data/info/@x', 'int') as [Info]
from #temp
Msg 2389, Level 16, State 1, Line 12
XQuery [#temp.xml_data.value()]: 'value()' requires a singleton (or empty sequence), found operand of type 'xdt:untypedAtomic *'
クエリ 3
select Name, xml_data.query('/data/info/.').value('@x', 'int') as [Info]
from #temp
Msg 2390, Level 16, State 1, Line 9
XQuery [value()]: Top-level attribute nodes are not supported
質問
xml
同じテーブル内の列から通常の列データと要素 + 属性値を返すクエリをどのように作成しますか?