Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请查看例如。
我不懂SQL Server数据类型。它有一个nvarchar数据类型列。
SQL Server
nvarchar
我想将该数据导入MySql.
MySql
这是什么专栏。Md5还是Base64?
Md5
Base64
你有想法吗 ?
谢谢。
根据 msdn 可变长度 Unicode 字符串数据。n定义字符串长度,可以是 1 到 4,000 之间的值。max表示最大存储大小为 2^31-1 字节(2 GB)。存储大小(以字节为单位)是输入数据实际长度的两倍 + 2 个字节。nvarchararenational char varying和的 ISO 同义词national character varying。
n
max
national char varying
national character varying
所以它是一个支持 Unicode 的纯字符串数据类型。我希望现在您可以轻松地在 MySQL 中找到匹配的数据类型。