VARCHAR vs. NVARCHAR, which one to use?
Quick answer : Do not use varchar ! A nvarchar column can store any Unicode data. A varchar column is restricted to an 8-bit codepage. Some people think varchar should be used because it takes up less space. I believe this is not the correct answer. ...
Jun 14, 20231 min read15
