Oracle TO NCLOB函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle TO NCLOB函数相关的知识,希望对你有一定的参考价值。
A few examples of the TO_NCLOB function.
--TO_NCLOB --Example 1 SELECT first_name, TO_NCLOB(first_name) AS nclob_value FROM student WHERE student_id = 1; --Example 2 CREATE TABLE datatype_test ( clob_column CLOB ); INSERT INTO datatype_test (nclob_column) VALUES ('This is ä tëst'); SELECT nclob_column, TO_NCLOB(nclob_column) AS nclobvalue FROM datatype_test;
以上是关于Oracle TO NCLOB函数的主要内容,如果未能解决你的问题,请参考以下文章
编程经验点滴----巧妙解决 Oracle NClob 读写问题