0 votes
in Sql by
Which datatype can store unstructured data in a column?

a) CHAR

b) RAW

c) NUMERIC

d) VARCHAR

1 Answer

0 votes
by

Answer- RAW

RAW datatype stores variable-length binary data that can be queried and inserted but not manipulated. Its maximum length is 32767 bytes.

CHAR stores character data in a fixed length.

NUMERIC stores numeric values only.

VARCHAR stores variable string data in a fixed length. Its maximum length is 4000 bytes.

...