i have field data that consist of NULL. I try to get SUM data by making NULL data as 0.00.
I use
select Sum(cast(ISNULL (amount,0) as money)) from t
here the demo
How to avoid this error "Cannot convert a char value to money. The char value has incorrect syntax"