Logo 
Search:

SQL Server Articles

Submit Article
Home » Articles » SQL Server » System FunctionsRSS Feeds

@@ROWCOUNT - ROWCOUNT Function

Posted By: Sarita Patel     Category: SQL Server     Views: 3696

This article explains about @@ROWCOUNT function in sql server with examples.

@@ROWCOUNT function returns number of rows affected by last executed statement.

This variable is set to 0 by any statement that does not return rows, such as an IF statement.

If the table has more than 2 billion rows, use ROWCOUNT_BIG().


Syntax of @@ROWCOUNT Function :

@@ROWCOUNT

Return type of @@ROWCOUNT function is an integer.




Examples of @@ROWCOUNT Function :

Example 1 : Use of @@ROWCOUNT function in select clause 

SELECT ProductName, UnitPrice
FROM    Products

SELECT @@ROWCOUNT


Output
76

Above example returns total row count returned by last statement. 
  
Share: 

 
 

Didn't find what you were looking for? Find more on @@ROWCOUNT - ROWCOUNT Function Or get search suggestion and latest updates.

Sarita Patel
Sarita Patel author of @@ROWCOUNT - ROWCOUNT Function is from United States.
 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!