SQL Server/T-SQL Tutorial/System Settings/ROWCOUNT BIG — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:23, 26 мая 2010
Retrieving the Rows Affected by the Previous Statement
4> --@@ROWCOUNT returns the integer value of the number of rows affected by the last Transact-SQL statement
in the current scope.
5> --@@ROWCOUNT_BIG returns the bigint value.
6>
7> SELECT @@ROWCOUNT Int_RowCount, ROWCOUNT_BIG() BigInt_RowCount
8> GO
Int_RowCount BigInt_RowCount
------------ --------------------
1 1
(1 rows affected)