Select FirstName + ' ' + LastName from Members
Gives error:
Implicit conversion of varchar value to varchar cannot be performed because the collation of the value is unresolved due to a collation conflict.
But it works fine when I take FirstName
and LastName
in separate columns like
Select FirstName, LastName From Members
I want to pick First and Last name in one column