Multiple choice technology databases

Find the ODD Datatype out

  1. VARCHAR2

  2. RECORD

  3. BOOLEAN

  4. RAW

Reveal answer Fill a bubble to check yourself
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.