Oracleconcat
时间: 2023-08-07 20:23:33 浏览: 208
Oracle12c创建wm_concat函数
Oracle中的concat函数用于将两个字符串拼接在一起,语法如下:
```
concat(string1, string2)
```
其中,string1和string2是要拼接的两个字符串。
例如,如果要将"hello"和"world"拼接在一起,可以使用以下语句:
```
SELECT concat('hello', 'world') as result FROM dual;
```
结果将会是"helloworld"。
阅读全文