Input a number with a substitution variable and then print its multiplication table using a WHILE loop.

What will be an ideal response?


```
SQL> CREATE TABLE item(ItemNum NUMBER(2));

Table created.

SQL> BEGIN
2 FOR num IN 1..5 LOOP
3 INSERT INTO item VALUES(num);
4 END LOOP;
5 END;
6 /

PL/SQL procedure successfully completed.

SQL> SELECT * FROM item;

ITEMNUM
----------
1
2
3
4
5
```

Computer Science & Information Technology

You might also like to view...

ASCII uses eight bits to represent each character.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

With a Windows 10 Firewall, in which of the following areas should you configure rules for computers from outside your network?

A) Domain B) Public C) Private D) None of the above

Computer Science & Information Technology

____ controls the overall spacing between letters in a given word or paragraph.

A. Kerning B. Tracking C. Leading D. Tracing

Computer Science & Information Technology

WCF provides a stronger programming model, enabling a single model for application-to-application communication, better distributed computing, and better integration between Web services and applications.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology