Just an example of how to pull this type of value from an embedded XML document in a SQL Server database table column…
select top 100 * from Transactions with (nolock) where trn_xml.value('(/Transaction/RetailStoreId)[1]', 'int') = 2401
Just an example of how to pull this type of value from an embedded XML document in a SQL Server database table column…
select top 100 * from Transactions with (nolock) where trn_xml.value('(/Transaction/RetailStoreId)[1]', 'int') = 2401