sql >> Databáze >  >> RDS >> Oracle

Vyberte do dočasné tabulky v Oracle

Pak možná budete muset udělat něco takového:

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. Předání tabulky jako parametru

  2. Jak dynamicky vybírat názvy sloupců v mySQL

  3. Nelze určit polymorfní typ, protože vstup má neznámý typ

  4. Instalace Ruby gem mysql2 se nezdařila