show/hide this revision's text 2 added text describing how comparisons are done

varchar: Variable-length, non-Unicode character data. The database collation determines which code page the data is stored using.

nvarchar: Variable-length Unicode character data. Dependent on the database collation for comparisons.

Armed with this knowledge, use whichever one matches your input data (ASCII v. Unicode).

show/hide this revision's text 1

varchar: Variable-length, non-Unicode character data.

nvarchar: Variable-length Unicode character data.

Armed with this knowledge, use whichever one matches your input data (ASCII v. Unicode).