What does the N mean?

sql-server, stored-procedures

Solution

Using this prefix indicates that the string is unicode

Problem

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?

Original source