Oracle/PLSQL: FOR Loop - TechOnTheNet.com

Oracle/PLSQL: FOR Loop - TechOnTheNet.com

瀏覽:1484
日期:2025-06-16
Example Let's look at an example of how to use a FOR LOOP in Oracle. FOR Lcntr IN 1..20 LOOP LCalc := Lcntr * 31; END LOOP; This FOR LOOP example will loop 20 times. The counter called Lcntr will start at 1 and end at 20. You can use the REVERSE ......看更多