Oracle || 连接运算符
在 Oracle中,||
运算符可以将两个或两个以上的字符串连接在一起。本章节要为大家带来的就是 ||
运算符的语法及使用示例。
||
运算符语法
string1 || string2 [ || string_n ]
- string1: 第一个要连接的字符串。
- string2:第二个要连接的字符串。
- string_n:可选项,第 n 个要连接的字符串。
返回值
返回连接后的一个字符串值。
适用版本
||
运算符可用于以下版本的 Oracle:
Oracle 12c、 Oracle 11g、 Oracle 10g、Oracle 9i
示例
下面是 Oracle ||
运算符的使用示例:
'oraok' || '.com'
'a' || 'b' || 'c' || 'd'
结果为:
'oraok.com'
'abcd'
案例:
select '姓名:' || c.stuname || ', 课程:' || b.coursename || ', 成绩:' || a.score || '分数' as sxcj
from score a, course b, stuinfo c
where a.courseid = b.courseid
and a.stuid = c.stuid
select '姓名:' || c.stuname || ', 课程:' || b.coursename || ', 成绩:' || a.score || '分数' as sxcj
from score a, course b, stuinfo c
where a.courseid = b.courseid
and a.stuid = c.stuid
连接空格字符
将值连接在一起时,可能需要添加空格字符来分隔连接的值。 否则,可能会得到一个串联值一起运行的长字符串。 这使得阅读结果非常困难。
下面来看一个简单的例子。可以使用||
运算符连接空格字符。
SELECT 'Dave' || ' ' || 'Anderson'
FROM dual;
-- Result: 'Dave Anderson'
这里,我们使用了 ||
运算符在 Dave
和 Anderson
字符串值之间添加空格字符,最后可以得到以下结果:
'Dave Anderson'
||
运算符将多个字段连接在一起时,连接空格字符。
例如:
SELECT first_name || ' ' || last_name AS customer_name
FROM customers;
此示例查询将返回结果集,其中一列由 customers 表中的 first_name
和 last_name
字段(用空格分隔)组成。 结果集中的列将被别名为 customer_name
。
连接单引号
||
运算符将连接包含在单引号中的字符串值,但并不直接说明如何在连接字符串的结果中添加单引号字符。
我们来看一个相当简单的例子,它显示了如何使用||
运算符向结果字符串添加单引号。
例如:
SELECT 'Let''s' || ' learn Oracle'
FROM dual;
结果为
'Let's learn Oracle'
由于字符串值用单引号引起来,因此引号内使用2个额外的单引号来表示生成的连接字符串中的单引号。
如果想从其他字符串值中分出单引号,则还可以按如下方式重写此查询:
SELECT 'Let' || '''' || 's' || ' learn Oracle'
FROM dual;
结果为
'Let's learn Oracle'
更多建议: