Search notes:
SQL Server: datatype nvarchar
An
nvarchar
stores UTF-16 characters.
In order to indicate that a string literal is an nvarchar type, it needs to be prepended by an uppercase
N
(such as
N'foo bar'
).
See also
varchar
data types
Index