This is the contents of my XML field in SQL:
- <TestingConfig xmlns="http://tempuri.org/TestingConfig.xsd">
`- <Config>`
`<ConfigId>75</ConfigId>`
`<PlaceId>2</PlaceId>`
`<Identifier>05</Identifier>`
`<Name>TEST1</Name>`
`</Config>`
`- <Config>`
`<ConfigId>76</ConfigId>`
`<PlaceId>2</PlaceId>`
`<Identifier>06</Identifier>`
`<Name>TEST2</Name>`
`</Config>`
`</TestingConfig>`
I need to query it and return the results in rows like this:
Config ID PlaceID Identifier Name
75 2 05 TEST1
76 2 06 TEST2
I need it to not include the namespace in the results. I'm new to XML querying. Thanks for any help.