052-163

You want to access employee details contained in flat files as part of the EMPLOYEE table. You plan to add a new column to the EMPLOYEE table to achieve this.
Which data type would you use for the new column?
A.CLOB
B.BLOB
C.BFILE
D.LONG RAW

CLOB 字符型大对象。一般存储大数量文本信息。存储单字节,固定宽度的数据。
BLOB 二进制大对象。存储在数据库里的大对象,一般是图像声音等文件。
BFILE 二进制文件,存储在数据库外的操作系统文件,只读的。把此文件当二进制处理。
LONG RAW 为未加工的可变长二进制数据,最长 2G(不建议使用)

原文地址:https://www.cnblogs.com/Babylon/p/8039043.html