SQL Server/T-SQL Tutorial/System Settings/ROWCOUNT BIG — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 13:23, 26 мая 2010

Retrieving the Rows Affected by the Previous Statement

   <source lang="sql">

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)</source>