I would like to compute something in an SQL Server result set that is the result of the value of comparison operators on other columns, something like
select (a > 2 AND b > 2 AND (c > 2 OR or c is null)) as "Reject"...
I just can't find any syntax that works.