web-dev-qa-db-ja.com

IDのリストに基づくSQLLOOP INSERT

ねえ、SQLライターブロックがあります。だからここに私が擬似コードに基づいてやろうとしていることがあります

int[] ids = SELECT id FROM (table1) WHERE idType = 1 -> Selecting a bunch of record ids to work with
FOR(int i = 0; i <= ids.Count(); ++i) -> loop through based on number of records retrieved
{
    INSERT INTO (table2)[col1,col2,col3] SELECT col1, col2, col3 FROM (table1)
    WHERE col1 = ids[i].Value AND idType = 1 -> Inserting into table based on one of the ids in the array

    // More inserts based on Array ID's here
}

これは私が達成しようとしているアイデアの一種です。SQLでは配列が不可能であることを理解していますが、ここに私の目標を説明するためにリストしました。

11
Ayo

これがあなたが求めているものです。

declare @IDList table (ID int)

insert into @IDList
SELECT id
FROM table1
WHERE idType = 1

declare @i int
select @i = min(ID) from @IDList
while @i is not null
begin
  INSERT INTO table2(col1,col2,col3) 
  SELECT col1, col2, col3
  FROM table1
  WHERE col1 = @i AND idType = 1

  select @i = min(ID) from @IDList where ID > @i
end

しかし、これがループで行うすべての場合は、代わりにバリーからの回答を実際に使用する必要があります。

22
Mikael Eriksson

あなたはただ使うことができます:

Insert Into Table2 (Col1, Col2, Col3)
Select col1, Col2, Col3
From Table1
Where idType = 1

各IDを個別にループする必要があるのはなぜですか

8
codingbadger
INSERT INTO table2
(
    col1,
    col2,
    col3
)
SELECT 
    table1.col1, 
    table1.col2, 
    table1.col3
FROM table1
WHERE table1.ID IN (SELECT ID FROM table1 WHERE table1.idType = 1)
7
Dustin Laine