Hi everyone and thanks for reading my question!How I can concatenate 3 columns of a table.I have 5 columns with 2 lines .The thing I want is to concatenate the first 3 columns (the first column is int type ) the other 2 are nchar(30).The idea is to convert my first column which is int to the same type so nchar(30).I try this: SELECT CONVERT(int,CD_number)+ ' ' + CONVERT(nchar(30),CD_name)+ ' ' + CONVERT(nchar(30),Band_name) AS InformationsFROM T_Stock
Error:Msg 245, Level 16, State 1, Line 1Conversion failed when converting the nvarchar value 'Lost Highway ' TO DATA type int.
Desired output (concatenate the values for first 3 columns all the 2 lines in a single column called Informations):Informations 1 Lost HighWay Bon Jovi2 Cher Cher