A PL/SQL block can contain other blocks. True or False?
True
False
Relational systems cannot store behaviour. True or False?
True
False
Any SQL statement can be included in a PL/SQL program. True or False?
True
False
The select into statement in a PL/SQL block only returns one row of a table. True or False?
True
False
PL/SQL provides packages for when more than one row of a table is required to be returned. True or False?
True
False
To use a cursor the open, get and close statements are used. True or False?
True
False
Loops and branching in PL/SQL include three variations. Which one is not legal?
loop
do…while
for loop
while loop
Examine the PL/SQL function:
Which of the following statements is not true?
The function getCleanersDepot returns the value of the depot name to the function call
The function getCleanersDepot returns the value of the cleaner name to the function call
The key word in defines an input variable and its type (cname%type which is characters)
A function may be called from within another function or procedure
A trigger is associated with one or more tables. True or False?
True
False
VTriggers should only be used to supplement database integrity constraints. When enforcing standard entity integrity rules do not use triggers: instead use the FOREIGN KEY constraint in the CREATE TABLE statement. True or False?