XQuery のコメント
適用対象:SQL Server
XQuery にコメントを追加できます。 コメント文字列は、"" 区切り記号と "(:
:)
" 区切り記号を使用して追加されます。 次に例を示します。
declare @x xml
set @x=''
SELECT @x.query('
(: simple query to construct an element :)
<ProductModel ProductModelID="10" />
')
xml 型の Instruction 列に対してクエリを指定する別の例を次に示します。
SELECT Instructions.query('
(: declare prefix and namespace binding in the prolog. :)
declare namespace AWMI="https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions";
(: Following expression retrieves the <Location> element children of the <root> element. :)
/AWMI:root/AWMI:Location
') as Result
FROM Production.ProductModel
where ProductModelID=7