I am trying to concat the following columns
c.coursec + ' ' + ms.sectionn,
ms.secitonn is a (decimal 3,0)
Thus I am getting an error:
Arithmetic overflow error converting varchar to data type numeric.
c.coursec = 187C
ms.sectionn = 2
needed results is 187c-2
I assume I must do some kind of cast or convert?