Expand Minimize
1 out of 1 rated this helpful - Rate this topic

ROWCOUNT_BIG (Transact-SQL)

Returns the number of rows affected by the last statement executed. This function operates like @@ROWCOUNT, except the return type of ROWCOUNT_BIG is bigint.

Topic link icon Transact-SQL Syntax Conventions


ROWCOUNT_BIG ( )

bigint

Following a SELECT statement, this function returns the number of rows returned by the SELECT statement.

Following an INSERT, UPDATE, or DELETE statement, this function returns the number of rows affected by the data modification statement.

Following statements that do not return rows, such as an IF statement, this function returns 0.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.