本文介绍了CLOB和NCLOB有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您能说出CLOB和NCLOB之间有什么区别吗?
Can you state any difference between the CLOB and NCLOB?
推荐答案
CLOB存储以数据库字符集编码的字符数据. NCLOB存储以国家字符集编码的字符数据
A CLOB stores character data encoded in the database character set. A NCLOB stores character data encoded in the national character set
SELECT parameter, value
FROM v$nls_parameters
WHERE parameter LIKE '%CHARACTERSET'
将显示数据库和数据库的国家字符集.
will show you the database and national character sets of your database.
这篇关于CLOB和NCLOB有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!