Using a FOR loop, print the values 10 to 1 in reverse order.

What will be an ideal response?


```
SQL> BEGIN
2 FOR v_count In REVERSE 1..10 LOOP
3 DBMS_OUTPUT.PUT_LINE(v_count);
4 END LOOP;
5 END;
6 /
10
9
8
7
6
5
4
3
2
1

PL/SQL procedure successfully completed.
```

Computer Science & Information Technology

You might also like to view...

What are the differences between compiled and interpreted languages? Give three examples of each.

What will be an ideal response?

Computer Science & Information Technology

What type of organizational structure does M R E have? What are the implications for M I S?

What will be an ideal response?

Computer Science & Information Technology

Match each paste option with its description

A) Pastes only formatting to paste area B) Pastes all content and formatting, including column width formatting, to paste area C) Pastes content and formatting to paste area D) Pastes only formulas to paste area E) Rows from original cells are pasted as columns in paste area 97) Paste 98) Formulas 99) Transpose 100) Formatting 101) Keep Source Column Widths

Computer Science & Information Technology

You can reposition a worksheet by dragging its ____ to a new location.

A. sheet tab B. cells C. file name D. right border

Computer Science & Information Technology