Monday, 6 February 2017

CONCATENATION OPERATOR (||) IN ORACLE

In oracle if you want to display column data along with literal strings then we must use concatenation operator.
Example -
select 'my employee name is '||ename from emp;

No comments:

Post a Comment