What is the difference between CLOB and NCLOB?

前端 未结 2 1865
青春惊慌失措
青春惊慌失措 2021-02-05 01:03

Can you state any difference between the CLOB and NCLOB?

2条回答
  •  长情又很酷
    2021-02-05 01:28

    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.

提交回复
热议问题