I have got a sql table view where one of the columns is calculated: 0.1 * [column_name] where [column_name] is of type Decimal not NULL.
Received view field becomes Decimal NULL because of some reason.
Why NOT NULL changes to NULL?
Regards
Mariusz
You can force it back to being not null by wrapping it in an ISNULL:
V1’s value column is marked as nullable, V2’s isn’t. Strangely, this is one place where you can’t use the more standards compliant
COALESCE:V3 resembles V1.