2

Oracles PL/SQLでは次のようなMSSQLの構成を実現したいと思います。

declare
asdf number;
begin
for r in (select * from  xyz) loop
   insert into abc (column1, column2, column3) 
   values (r.asdf, r.vcxvc, r.dffgdfg) returning id into asdf;

    update xyz set column10 = asdf where ID = r.ID;
end loop;
end;

これを実現する方法についてのアイデアは役に立ちます。

前もって感謝します

4

5 に答える 5

6

これは単に1つのテーブルのコピーのようですよね?

上手:

SELECT column1, column2, column3 INTO abc FROM xyz

私はあなたも次のようなものにすることができると思います

INSERT INTO abc SELECT column1, column2, column3 FROM xyz

ただし、2番目のケースでは、前にテーブルを作成する必要があります。最初のケースでは、代わりにTABLEも作成されます。

乾杯ヨハネス

于 2009-05-26T07:30:40.093 に答える
3

カーソルはないが、一時列があるバージョン:

-- //temporarily add the column (assume the table "abc" already exists)
ALTER TABLE "abc" ADD xyzID INT;
GO;
-- //insert all the data (assuming the ID field on "xyz" is called ID)
INSERT INTO "abc" (column1, column2, column3, xyzID) SELECT asdf, vcxvc, rdffgdfg, ID FROM "xyz";
-- //update "xyd" with the new ID
UPDATE "xyd" SET column10 = "abc".ID FROM "xyd" INNER JOIN "abc" ON "xyd".ID = "abc".xydID
-- //drop the temporary column
ALTER TABLE "abc" DROP COLUMN xyzID;
于 2009-05-26T07:33:23.270 に答える
2
declare @asdf int/varchar -- unsure of datatype
declare @vcxvcint/varchar -- unsure of datatype
declare @dffgdfg int/varchar -- unsure of datatype
declare @id int    
declare db_cursor CURSOR FOR SELECT asdf, vcxvc, dffgdfg FROM xyz

OPEN db_cursor
FETCH NEXT FROM db_cursor
INTO @asdf, @vcxvcint, @dffgdfg

WHILE @@FETCH_STATUS = 0
BEGIN    
  insert into abc (column1, column2, column3) values (@asdf, @vcxvcint, @vcxvcint)    
  set @id = scope_identity() -- This will get the auto generated ID of the last inserted row
  update xyz set column10 = @asdf where id = @    
  FETCH NEXT FROM db_cursor INTO @name    
END

CLOSE db_cursor
DEALLOCATE db_cursor

もちろん、カーソルを本番コードに忍び込ませようとすると、基本的にすべてのDBAがあなたを殺します。

于 2009-05-26T07:31:45.613 に答える
1

あなたの質問を理解した場合(私はPL / SQLに精通していません)、非常に簡単な作業のように見えます。

INSERT INTO abc(column1, column2, column3) SELECT asdf, vcxvc, dffgdfg FROM xyz;
UPDATE xyz SET column10 = id;

しかし、私はあなたの意図を推測しているだけです、希望は誤解されていません。

PS:他の人がすでに指摘しているように、あなたはすでにテーブルabcを作成している必要があります

于 2009-05-26T07:56:42.787 に答える
0

これがあなたが探しているものであることを願っています:

declare
asdf number;
begin
for r in (select * from  xyz) loop
   insert into abc (column1, column2, column3) 
   values (r.asdf, r.vcxvc, r.dffgdfg) returning id into asdf;

    update xyz set column10 = asdf where ID = r.ID;
end loop;
end;

になるだろう

DECLARE @asdf int
DECLARE @ID int
DECLARE @MyTmpTableVar table(asdf int, abc_id int)

// insert records from your cursor r into table abc, 
// and return a temporary table with "id" and "asdf" fields from the xyz table
INSERT INTO abc(column1, column2, column3)
OUTPUT asdf, id INTO @MyTmpTableVar
SELECT r.asdf, r.vcxvc, r.dffgdfg
FROM xyz

// if it would return just one row and you wanted to find the value
//SELECT @asdf = asdf, @id = abc_id
//FROM @MyTmpTableVar

// update the table xyz with the values stored in temporary table
// restricting by the key "id"
UPDATE xyz
SET xyz.column10 = t.asdf
FROM @MyTmpTableVar AS t
WHERE xyz.id = t.abc_id

Oracleの returnの sqlServer バージョンはOUTPUT句です。

詳細については、この msdn ページにアクセスしてください。

于 2009-11-07T02:03:37.003 に答える