我在UTF8中有一个字符串,例如:Thermal Oxide: 0 Å to 40 μm 我想将其保存在SQL Server中。当我将其保存为数据类型ntext / nvarchar时,它的保存方式如下:Thermal Oxide: 0 ? to 40 ?m 我能做什么? 最佳答案 在带引号的字符串前面加上N:INSERT INTO someTable (myField) VALUES (N'Thermal Oxide: 0 Å to 40 μm')