For ex: Let’s say we have the following query
FROM [AdventureWorks2012].[Production].[TransactionHistory]
WHERE Quantity = 2
Assume the above query does a table scan and filters the data. Then the “Number of Rows Read” would be total number of rows in the table. “Actual Number of Rows” would be the total number of rows filtered by the "where" clause.
Obviously, the operators with significant differences between “Number of Rows Read” and “Actual Number of Rows” are potential areas to watch out for while query tuning. On upcoming posts, will cover scenarios where “Number of Rows Read” can be put to good use.