Examlex

Solved

DECLARE TYPE Type_basket IS RECORD

question 45

Multiple Choice

DECLARE TYPE type_basket IS RECORD(
Basket bb_basket.idBasket%TYPE,
Created bb_basket.dtcreated%TYPE,
Total bb_basket.cost%TYPE,
Qty bb_basket.quantity%TYPE,
Sub bb_basket.subtotal%TYPE) ;
Rec_basket type_basket;
BEGIN
--- executable code ---
END;
According to the code fragment above, which variable is declared using the type_basket data type?


Definitions:

Related Questions