Subject sql and speed
Author Duilio Foschi
is this query

select sum(qty) from table1

faster than

select sum(qty) from table1
where qty<>0

?

TIA

Duilio Foschi