sql >> データベース >  >> RDS >> Oracle

Oracleの一時テーブルを選択します

    次に、おそらく次のようなことをする必要があります:

    declare
       type t_temp_storage is table of student%rowtype;
       my_temp_storage t_temp_storage;
    begin
       select * bulk collect into my_temp_storage from student;
       for i in 1..my_temp_storage.count
        loop
        dbms_output.put_line('here I am '||my_temp_storage(i).stuid);
       end loop; 
     end;
    


    1. カーソル内の動的テーブル名

    2. Laravelは更新クエリからレコードIDを取得します

    3. Mysql Connector / JがDATEとTIMEのタイムゾーンを変換しないようにするにはどうすればよいですか?

    4. SQLiteOpenHelper:物理デバイスで呼び出されないonCreate()メソッド