本文介绍了SQL Server 2005将ASCII转换为Unicode(UTF-8 - > nvarchar)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个数据在nvarchar字段中的数据以ascii格式:ZardFrèresGuesta
I have data in an nvarchar field with data in ascii format: "Zard Frères Guesta"
如何将其转换为可读(unicode)格式在t-sql?
How do I convert it to a readable(unicode) format in t-sql?
推荐答案
具有可执行此操作的功能:
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=62406 has a function that will do this:
select dbo.utf8_to_utf16('Zard Frères Guesta')
结果:
Zard Frères Guesta
这篇关于SQL Server 2005将ASCII转换为Unicode(UTF-8 - > nvarchar)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!