Use a PL/SQL block to delete item number 4 from the ITEM table created in Lab 4.
What will be an ideal response?
```
SQL> BEGIN
2 DELETE FROm item
3 WHERE ItemNum = 4;
4 COMMIT;
5 END;
6 /
PL/SQL procedure successfully completed.
SQL> SELECT * FROM item;
ITEMNUM
----------
1
2
3
5
```
You might also like to view...
Match the following common events to their description
I. On Enter II. On Exit III. On Got Focus IV. On Lost Focus V. On Click A. Occurs when a text-based control is clicked B. Occurs when a user presses Tab to focus on an object C. Occurs after using a text-based control and pressing Tab D. Occurs when a user presses Tab to move the focus E. Occurs after a user presses and releases the left mouse button
A Web page's code is executed by a client computer.
Answer the following statement true (T) or false (F)