Ah...
For example, if I wrote a statement such as this and executed it:
Update Inventory
Set balance = 0
Where balance < 0
and it updated 10 records or rows, a ROW level trigger on the 'balance' field would execute 10 times but the STATEMENT level trigger on the 'balance' field would execute ONCE.
Now, is it too deep to ask how you could 'look' at the rows updated in a STATEMENT level trigger (for instance, you wanted to see the count of the number of rows updated?)