System Settings MSSQL Tutorial

After each Transact-SQL statement, the server sets the value of  this variable to the total 
number of records affected by it. 
9>      select 1+2
10>      GO
-----------
          3
(1 rows affected)
1>
2>      if @@rowcount = 0
3>         Print "No rows were copied!"
4> GO
1>