1

I understand that, in t-sql, the prefix N on a string literal specifies a unicode string (i.e. the type of the literal is nvarchar). My question is: why N? Why not U, for Unicode, or L, like C?

Dan Davies Brackett
  • 9,811
  • 2
  • 32
  • 54

1 Answers1

3

As indicated by this MSDN article, N stands for national character.

Dan Davies Brackett
  • 9,811
  • 2
  • 32
  • 54
Z .
  • 12,657
  • 1
  • 31
  • 56