sql >> Databasteknik >  >> RDS >> Sqlserver

Kan jag gå igenom en tabellvariabel i T-SQL?

Lägg till en identitet till din tabellvariabel och gör en enkel loop från 1 till @@ROWCOUNT för INSERT-SELECT.

Prova detta:

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


  1. JDBC Statement Exempel – Batch Infoga, Uppdatera, Ta bort

  2. Returnerar alla rader med vissa villkor

  3. På INSERT till en tabell INSERT data i anslutna tabeller

  4. Mysql FROM_UNIXTIME som UTC