In SQL Server I am using the concat
function to join two columns. One column is numeric. Because of that after concat
, the output shows that number in scientific notation. Is there any way to avoid that scientific notation?
I tried
concat (convert (numbercolumn as varachar), text_column)
but I get an error
concat is not a recognized built in function name