FOR LOOP in PLSQL | Oracle PLSQL tutorial in TAMIL

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ย. 2024

ความคิดเห็น • 21

  • @ajith.k5517
    @ajith.k5517 ปีที่แล้ว

    Plsql la total aa 26 video tha irruku. please continue to we learn more about plsql

  • @krishnanselvam786
    @krishnanselvam786 2 ปีที่แล้ว

    thank you so so so so so much .......................sama all videos are very clear expaination.

  • @veeramani6029
    @veeramani6029 ปีที่แล้ว +1

    Bro next video podunga bro
    Cursors
    Functions
    Triggers
    Procedures

  • @ajith.k5517
    @ajith.k5517 ปีที่แล้ว

    Sir video continue pannunga please 🙏🏼

  • @SachusCollections
    @SachusCollections ปีที่แล้ว

    Hi Sir, When i expect the videos of Cursors, Triggers, Oracle performance tuning, Dynamic SQL, Bulk Data Processing etc.

    • @learncodetodaytamil
      @learncodetodaytamil  ปีที่แล้ว

      Cursors will be uploaded by next week... Then will start packages, triggers etc... Stay tuned..

    • @SachusCollections
      @SachusCollections ปีที่แล้ว

      @@learncodetodaytamil Sounds good Thank you !

  • @krishnanselvam786
    @krishnanselvam786 ปีที่แล้ว

    bro GTT table video post podunga bro indetail ah please post video GTT.

  • @yogalakshmi9882
    @yogalakshmi9882 10 หลายเดือนก่อน

    Hi, what if we want to increment the for loop variable by 2, how should we give that?

    • @learncodetodaytamil
      @learncodetodaytamil  10 หลายเดือนก่อน

      Use mod function...
      Ex:
      begin
      for i in 1 .. 100
      loop
      if mod (i, 2) = 0
      then
      dbms_output.put_line (i);
      else
      null;
      end if;
      end loop;
      end;
      /

    • @yogalakshmi9882
      @yogalakshmi9882 10 หลายเดือนก่อน

      @@learncodetodaytamil thanks!!

    • @yogalakshmi9882
      @yogalakshmi9882 10 หลายเดือนก่อน +1

      Hii sir, You videos are really useful. Thank you. Also, can u tell what are the questions they may ask in pl/SQL developer interview please?

    • @learncodetodaytamil
      @learncodetodaytamil  10 หลายเดือนก่อน +1

      Thanks!. Every topic is important.... Focus on cursors, exceptions, pragma autonomous transactions, functions, control statement, triggers ....

    • @yogalakshmi9882
      @yogalakshmi9882 10 หลายเดือนก่อน

      @@learncodetodaytamil Thank you sir!!

  • @aneeshk4018
    @aneeshk4018 ปีที่แล้ว

    hi... suppose i dont know the employee id (i.e 100 to 105). but i need to fetch the names from 100 to 125 approx..how to fetch the names using for loop..????

    • @aneeshk4018
      @aneeshk4018 ปีที่แล้ว

      can i fetch the records???

    • @learncodetodaytamil
      @learncodetodaytamil  ปีที่แล้ว

      In normal for loop we cannot achieve this. But using for loop cursor we can. In cursor we can mention the select statement directly.

    • @aneeshk4018
      @aneeshk4018 ปีที่แล้ว

      Ok...than k u ...