PLSQL | CONCAT函数
PL/SQL 中的字符串实际上是一个带有可选大小规范的字符序列。
字符可以是数字、字母、空白、特殊字符或所有字符的组合。
CONCAT函数允许您将两个字符串连接在一起。要 CONCAT 两个以上的值,我们可以嵌套多个 CONCAT函数调用。
句法:
CONCAT( string1, string2 )
使用的参数:
- string1:用于指定要连接的第一个字符串。
- string2:用于指定要连接的第二个字符串。
支持的 Oracle/PLSQL 版本:
- 甲骨文 12c
- 甲骨文 11g
- 甲骨文 10g
- 甲骨文 9i
- 甲骨文 8i
示例 1:
DECLARE
Test_String string(10) := 'Hello ';
Test_String2 string(10) := 'world!';
BEGIN
dbms_output.put_line(CONCAT(Test_String, Test_String2));
END;
输出:
Hello world!
示例 2:
DECLARE
Test_String string(10) := 'Geeks';
Test_String2 string(10) := 'For';
Test_String3 string(10) := 'Geeks';
BEGIN
dbms_output.put_line(CONCAT(CONCAT(Test_String, Test_String2), Test_String3));
END;
输出:
GeeksForGeeks