Find the ODD Datatype out
-
VARCHAR2
-
RECORD
-
BOOLEAN
-
RAW
B
Correct answer
Explanation
RECORD is the odd one out because it's a composite/structured data type that can hold multiple fields of different types (like a struct), while VARCHAR2, BOOLEAN, and RAW are all scalar/primitive data types that hold single values. RECORD is used in PL/SQL for defining complex data structures, not for storing individual values in columns.