当前位置:网站首页>Oracle/PLSQL: To_ Clob Function
Oracle/PLSQL: To_ Clob Function
2022-06-27 01:46:00 【yuanlnet】
In Oracle/PLSQL, the to_clob function converts a LOB value from the national character set to the database character set.
Syntax
The syntax for the to_clob function is:
to_clob( expression )
expression can either be a lob_column, char, varchar2, nchar, nvarchar2, clob or nclob value.
Applies To
- Oracle 11g, Oracle 10g, Oracle 9i
For Example
select to_clob(nclob_column)
from suppliers;
This example would convert the value in the field called nclob_column to a CLOB value.
边栏推荐
- Oracle/PLSQL: Replace Function
- Systematic analysis of social networks using Networkx: Facebook network analysis case
- Memcached foundations 12
- p5.js死亡星球
- 【毕业季】角色转换
- Why divide the training set and the test set before normalization?
- Oracle/PLSQL: Rtrim Function
- [graduation season] role conversion
- 做了两天的唯美蝴蝶动画
- SQLite Reader 插件测试SQLite语法
猜你喜欢
idea 插件开发一些异常处理
消费者追捧iPhone,在于它的性价比超越国产手机
Did your case really pass?
SystemVerilog仿真速率提升
Analysis of ideal L9 product power: the price is 459800 yuan, the four cylinder engine is adopted, and the endurance is 1315km
1.44寸TFT-LCD显示屏取模教程
SQLite Reader 插件测试SQLite语法
svg拖拽装扮Kitty猫
[graduation season] role conversion
学习DiscoDiffusion的最基础操作
随机推荐
图论知识及其应用初步调研
Oracle/PLSQL: Lower Function
Memcached foundation 1
UVM中uvm_config_db非直线的设置与获取
ThreadLocal详解
Amazon elasticache quickly builds a cache service cluster, which is fast
Oracle/PLSQL: Rpad Function
Oracle/PLSQL: Lower Function
XSS notes (Part 2)
按键控制LED状态翻转
get_sequencer的用法总结
Parameter transfer method between two pages
做了两天的唯美蝴蝶动画
使用NetworkX对社交网络进行系统的分析:Facebook网络分析案例
Why divide the training set and the test set before normalization?
Oracle/PLSQL: Substr Function
memcached基礎12
1.44 inch TFT-LCD display screen mold taking tutorial
两个页面之间传参方法
Oracle/PLSQL: To_Clob Function