Reputation: 1013
Running the following TSQL
SELECT Name FROM Category
returns these results as the column in SQL is of xml
data type.
1 <locale en-US="Abstract" />
2 <locale en-US="African" />
3 <locale en-US="Americana" />
I'd like to get a result set like:
1 Abstract
2 African
3 Americana
How can I do this?
Upvotes: 0
Views: 69