When must we use NVARCHAR/NCHAR instead of VARCHAR/CHAR in SQL Server?
The real reason you want to use NVARCHAR is when you have different languages in the same column, you need to address the columns in T-SQL without decoding, you want to be able to see the data “natively” in SSMS, or you want to standardize on Unicode. If you treat the database as dumb storage, … Read more