C.J.
C.J.

Reputation: 3527

What does the N mean?

I have seen many SP like:

SET @SQLString = N'SELECT @max_titleOUT = max(JobTitle) 
                 FROM AdventureWorks2012.HumanResources.Employee
                 WHERE BusinessEntityID = @level';

What exactly does that N mean?

Upvotes: 6

Views: 5855

Answers (1)

jtm001
jtm001

Reputation: 371

Using this prefix indicates that the string is unicode

Upvotes: 3

Related Questions