Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

Kann ich eine Tabellenvariable in T-SQL durchlaufen?

Fügen Sie Ihrer Tabellenvariablen eine Identität hinzu und führen Sie eine einfache Schleife von 1 bis @@ROWCOUNT von INSERT-SELECT.

aus

Versuchen Sie Folgendes:

DECLARE @RowsToProcess  int
DECLARE @CurrentRow     int
DECLARE @SelectCol1     int

DECLARE @table1 TABLE (RowID int not null primary key identity(1,1), col1 int )  
INSERT into @table1 (col1) SELECT col1 FROM table2
SET @[email protected]@ROWCOUNT

SET @CurrentRow=0
WHILE @CurrentRow<@RowsToProcess
BEGIN
    SET @[email protected]+1
    SELECT 
        @SelectCol1=col1
        FROM @table1
        WHERE [email protected]

    --do your thing here--

END