vote up 2 vote down star

[closed exact-duplicate] See http://stackoverflow.com/questions/217535/n-prefix-before-string-in-transact-sql-query

What does "N" stand for in following which we use to check before creating sproc :

(SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[myname]') AND type in (N'P', N'PC'))

flag

68% accept rate
Have you looked at the "related questions" that appeared when you edited this one? This has been asked a couple of times already... stackoverflow.com/questions/217535/… – Tomalak Dec 8 '08 at 8:30
I really dint check that question tommack.. i have been struggling n net for this but cldnt find it so posted the question. – Samiksha Dec 8 '08 at 8:32
I don't think it would have been too difficult to google it, would it google.com/search?q=SQL+Server+N+string/… – Tomalak Dec 8 '08 at 9:01

closed as exact duplicate by Tomalak Dec 8 '08 at 8:29

3 Answers

vote up 6 vote down check

N before string means what it's Unicode string constant.

You could also be interested in this article Why do some SQL strings have an 'N' prefix?

link|flag
Good article. Thanks. – gbn Dec 8 '08 at 8:22
vote up 2 vote down

Denotes that the string literal is unicode

BOL reference

link|flag
vote up 1 vote down

It stands for "National language character set". It's for Unicode.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.