codecamp

Oracle Compose()函数

在Oracle中,使用Compose()函数可以返回一个Unicode字符串。本教程,将为大家带来Compose()函数的语法及使用示例。

Compose()函数语法

COMPOSE( string )

string:用于创建Unicode字符串的输入值。 它可以是char,varchar2,nchar,nvarchar2,clob或nclob。

返回值

返回一个字符串值。

以下是可以在Compose()函数中的其他字符组合使用的unistring值的列表:

Unistring值 结果字符
unistr('\0300') 重音符(`)
unistr('\0301') 锐音符(‘)
unistr('\0302') (^)
unistr('\0303') ~
unistr('\0308') 变音符(¨)

适用版本

Compose()函数可用于以下版本的Oracle :

Oracle 12c、 Oracle 11g、 Oracle 10g、 Oracle 9i

示例

下面是Oracle Compose()函数的使用示例:

COMPOSE('o' || unistr('\0308') )
Result: ö

COMPOSE('a' || unistr('\0302') )
Result: â

COMPOSE('e' || unistr('\0301') )
Result: é


Oracle Chr()函数
Oracle Concat()函数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }