Oracle TO NCLOB函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle TO NCLOB函数相关的知识,希望对你有一定的参考价值。

A few examples of the TO_NCLOB function.
  1. --TO_NCLOB
  2.  
  3. --Example 1
  4. SELECT first_name,
  5. TO_NCLOB(first_name) AS nclob_value
  6. FROM student
  7. WHERE student_id = 1;
  8.  
  9. --Example 2
  10. CREATE TABLE datatype_test (
  11. clob_column CLOB
  12. );
  13.  
  14. INSERT INTO datatype_test (nclob_column)
  15. VALUES ('This is ä tëst');
  16.  
  17. SELECT nclob_column, TO_NCLOB(nclob_column) AS nclobvalue
  18. FROM datatype_test;

以上是关于Oracle TO NCLOB函数的主要内容,如果未能解决你的问题,请参考以下文章

Oracle TO u CLOB函数

编程经验点滴----巧妙解决 Oracle NClob 读写问题

oracle clob与nclob的互相转换

Oracle nclob字段类型转成nvarchar2字段类型

oracle中blob,clob,nclob主要区别是啥?

从具有 Oracle db 中的属性的 XML 中提取 NCLOB 中的 XML 数据