|
how to handle below error, Operand type clash: text is incompatible with decimal i must data trans for text datatype to decimal data type. in first table all values are decimals.
(comments are locked)
|
|
I would suggest you stop using the text datatype and instead use the varchar(max) datatype. But to cast from text to decimal you'll have to go over a varchar. Like this:
(comments are locked)
|

