Find the ODD Datatype out
-
VARCHAR2
-
RECORD
-
BOOLEAN
-
RAW
B
Correct answer
Explanation
VARCHAR2, BOOLEAN, and RAW are all scalar data types in PL/SQL, meaning they hold a single value. RECORD is a composite data type that can contain multiple fields (similar to a struct in other languages). This makes RECORD the odd one out because it's a composite type that can hold multiple values, while the others are simple scalar types holding single values. Therefore option B (RECORD) is correct.