Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 976
C.J. Avatar asked Jul 09 '14 14:07

C.J.


People also ask

What does the letter N mean in text?

Summary of Key Points"And" is the most common definition for N on Snapchat, WhatsApp, Facebook, Twitter, Instagram, and TikTok. N. Definition: And.

What does the N mean in statistics?

The symbol n represents the sample size (n = 10). • The capital letter X denotes the variable. • xi represents the ith value of variable X.

What does N * mean in math?

typically it is used to show that something is new or different.


1 Answers

Using this prefix indicates that the string is unicode

like image 142
jtm001 Avatar answered Sep 19 '22 09:09

jtm001