I'm trying to parse the XML below in SQL Server and dealing with the nodes in the below:
<PrebillMarkup xmlns="clr-namespace:Xyz.Query.ViewModels;assembly=Xyz.Query" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<PrebillMarkup.NewValues>
<x:String x:Key="Narrative">Calls with P.</x:String>
</PrebillMarkup.NewValues>
<PrebillMarkup.OriginalValues>
<x:String x:Key="Narrative">Calls with P on confi agreement.</x:String>
</PrebillMarkup.OriginalValues>
</PrebillMarkup>
I don't have any SQL yet from all of my research since I can't seem to find any namespaces that come close to what I'm trying to parse. Intended output is:
Original Values | New Values
_________________________________________________
Call with P | Calls with P on confi agreement