Diffrence Between Varchar and NVarChar
I was just wondering what the diffrences are between NVARCHAR and VARCHAR? When do I use NVARCHAR as opposed to VARCHAR?
Thanks,
Matthew
I was just wondering what the diffrences are between NVARCHAR and VARCHAR? When do I use NVARCHAR as opposed to VARCHAR?
Thanks,
Matthew
SQL Server uses 2 bytes per character for n-type text columns, while the not-n-type columns use 1 (at least for latin-based languages).
Most of the time, nvarchar/nchar/ntext is the way to go.
-Ryan / Kardax