A family of Microsoft relational database management systems designed for ease of use.
And if the question is about to count those where the amount is > 0 and that you can't use that condition, amount > 0, in the where clause for some reason, then you can use:
COUNT( iif(amount > 0, 1, null ) )
or
SUM( iif(amount > 0, 1, 0) )