Hi,
Why is it that SELECT 1+nullevaluates to NULL, but SELECT sum(foo) FROM (VALUES(1), (NULL)) AS v(foo)evaluates to 1 ?
WBL