Oracle PL/SQL/Char Functions/CONCAT — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 09:58, 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>