Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Wybierz do tabeli tymczasowej w Oracle

Wtedy być może musisz zrobić coś takiego:

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Transakcje autonomiczne w Sybase ASE 15,5

  2. C#:Obiekt nie może być rzutowany z DbNull na inne typy

  3. cd:-M:nieprawidłowa opcja

  4. Oracle LITAGG() dla wielu atrybutów?

  5. Jak zaktualizować kolumnę TIMESTAMP na TIMESTAMP WITH TIME ZONE w Oracle?