Oracle PL/SQL/Char Functions/CONCAT
Версия от 13:45, 26 мая 2010; (обсуждение)
CONCAT() concatenates two (or more) strings
SQL>
Syntax: CONCAT(<expression>,<expression>)
SQL>
SQL> SELECT
2 CONCAT("Hello ", " ,world") result from dual;
RESULT
----------------------------------------------------------------
Hello ,world
SQL>
SQL>
Simple demo for CONCAT function: concatenate two strings together
SQL> SELECT CONCAT("Oracle","Server") AS Concat FROM Dual;
CONCAT
------------
OracleServer
SQL>