oracle concat用法

大哥帮我教一下,oracle concat用法
最新回答
敷衍

2024-11-03 01:10:26

concat()是拼接函数,将两个字符串拼接在一起

select concat(first_name,last_name) from employees

|| 是字符串连接符,用与连接字符串

select first_name||last_name from employees

两者很相似但也有不同的地方

||可以在字符串中间添加自定义的字符,而concat不行

扩展资料:

concat ()方法用于连接两个或多个数组。

定义用法

The concat() method is used to join two or more arrays。

使用concat()方法可用来将两个或多个数组结合起来。

This method does not change the existing arrays, it only returns a copy of the joined arrays。

这个方法不会改变现存的数组,它只返回了所结合数组的一份拷贝。

在Oracle数据库中,可以使用||代替concat(),并且||可以同时连接多个字符串。

在Sqlserver数据库中,可以使用+代替concat(),+也可以同时连接多个字符串。

参考资料来源:

百度百科-concat()