Simple demo for CONCAT function: concatenate two strings together : CONCAT « Char Functions « Oracle PL / SQL






Simple demo for CONCAT function: concatenate two strings together




SQL> SELECT CONCAT('Oracle','Server') AS Concat FROM Dual;

CONCAT
------------
OracleServer

SQL>

           
       








Related examples in the same category

1.CONCAT() concatenates two (or more) strings