CONCAT() concatenates two (or more) strings : CONCAT « Char Functions « Oracle PL / SQL






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>

 








Related examples in the same category

1.Simple demo for CONCAT function: concatenate two strings together