-- Creating Table
Create Table Test1
(
id Varchar(8000)
)
-- Inserting a record
Insert into Test1 Values ('????????????????????????????????????????????????????????????????????????????????');
Run Code Online (Sandbox Code Playgroud)
因为我已将id的数据类型定义为Varchar.数据存储为?????.
我必须使用NVARCHAR ..?VarChar和Nvarchar()之间的区别是什么.请解释一下UNIcode.