Shuvra
Shuvra

Reputation: 212

Nvarchar perform better than varchar?

I am really surprisde to see that in my MS SQL table, I am defining a field varchar and doing group by with another table's field.

When I do the same thing with the column as nvarchar it is 3 second faster than varchar when, theoretically, varchar should be faster because of 1 byte char.

Can anyone explain me why nvarchar is faster in this instance?

Thanks in advance.

Upvotes: 3

Views: 1565

Answers (1)

Eystein Bye
Eystein Bye

Reputation: 5126

Operating systems use Unicode internally. I think that makes nvarchar faster since it does not need any converting.

Upvotes: 1

Related Questions