Oracle
 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. ऑरैकल से ब्लॉब डेटा प्राप्त करते समय सीमा

  2. querydsl के साथ listagg का उपयोग कैसे करें?

  3. Oracle - वैकल्पिक मापदंडों के साथ सूचकांक का उपयोग

  4. ऑरैकल संग्रहीत कार्यविधि में टेक्स्ट की कई पंक्तियों को बदलें या हटाएं

  5. SQL एकाधिक एकाधिक पंक्तियों में सम्मिलित करें