Bookmarks tagged [varchar]
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar
An nvarchar
column can store any Unicode data. A varchar
column is restricted to an 8-bit codepage. Some people think that varchar should be used because it takes up less space. I believe this is ...