私は SQL の基本的な教科書を読んでいます。以下は T-SQL コードです。
SELECT Customer.custid AS [@custid],
Customer.companyname AS [companyname]
FROM Sales.Customers AS Customer
WHERE Customer.custid <= 2
ORDER BY Customer.custid
FOR XML PATH ('Customer'), ROOT('Customers');
PATH を使用するポイントと、custid の前に @ がある理由を教えてもらえますか?
どんな提案も歓迎します、ありがとう