There is a way to obtain the Rows and the Tables affected by setting the statistics ON:
SET STATISTICS TIME ON;
SET STATISTICS IO ON;
What will show you something like:
SQL Server Execution Times: CPU time = 0 ms, elapsed time = 0 ms. SQL Server parse and compile time: CPU time = 0 ms, elapsed time = 0 ms. Table 'Your_Table'. Scan count 1, logical reads 3, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
SQL Server Execution Times: CPU time = 0 ms, elapsed time = 0 ms.
(3 row(s) affected) SQL Server parse and compile time: CPU time = 0 ms, elapsed time = 0 ms. Table 'Your_Table'. Scan count 1, logical reads 3, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
So, it shows you not only the Tables affected but also the time the system has spent to process each subquery.
When you don't require them anymore just run:
SET STATISTICS TIME OFF;
SET STATISTICS IO OFF;