Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.74 KB

File metadata and controls

52 lines (40 loc) · 1.74 KB
title ROWCOUNT_BIG (Transact-SQL)
description ROWCOUNT_BIG (Transact-SQL)
author MikeRayMSFT
ms.author mikeray
ms.date 03/13/2017
ms.service sql
ms.subservice t-sql
ms.topic reference
ms.custom
ignite-2025
f1_keywords
ROWCOUNT_BIG
ROWCOUNT_BIG_TSQL
helpviewer_keywords
ROWCOUNT_BIG function
number of rows affected by statement
row affected by statements [SQL Server]
statements [SQL Server], last statement
counting rows
dev_langs
TSQL

ROWCOUNT_BIG (Transact-SQL)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]

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.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

ROWCOUNT_BIG ( )  

Return Types

bigint

Remarks

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.

See Also

COUNT_BIG (Transact-SQL)
Data Types (Transact-SQL)