|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
SQL Data Conversion QuestionI have a column in a table that is a data type varchar. I am copying that data to another table's column that is nvarchar. The lengths are the same.
I understand the differences between the 2 types BUT do I need to explicitly convert the varchar to nvarchar data type? Thanks, Yosh SQL Server will do it implicitly because nvarchar has higher precedence that
varchar. But doing it explicitly will not hurt. AMB Show quote "Yosh" wrote: > I have a column in a table that is a data type varchar. I am copying that data to another table's column that is nvarchar. The lengths are the same. > > I understand the differences between the 2 types BUT do I need to explicitly convert the varchar to nvarchar data type? > > Thanks, > > Yosh > > |
|||||||||||||||||||||||