MCQ: Which data type is used to store files in the database table?

Which data type is used to store files in the database table?

  1. BLOB
  2. CLOB
  3. File
  4. Both a and b

Answer

b. CLOB

Explanation:

To store a large volume of data such as text files into a table, we use CLOB (Character Large Object) data type of SQL.

Comments