使用 Microsoft SQL Server...
declare @x xml
set @x = '<Example><You & Me></Example>'
select cast(@x.query('/Example/text()') as nvarchar(50))
结果是“<你&我>” 而不是“<你和我>”。
如何让 SQL 以“<”、“&”之类的方式读取 XML 和'>' 被解码?
使用 Microsoft SQL Server...
declare @x xml
set @x = '<Example><You & Me></Example>'
select cast(@x.query('/Example/text()') as nvarchar(50))
结果是“<你&我>” 而不是“<你和我>”。
如何让 SQL 以“<”、“&”之类的方式读取 XML 和'>' 被解码?