vote up 2 vote down star

What is the string concatenation operator in Oracle SQL?

Are there any "interesting" features I should be careful of?

(This seems obvious, but I couldn't find a previous question asking it).

flag

2 Answers

vote up 7 vote down check

It is ||, for example:

select 'Mr ' || ename from emp;

The only "interesting" feature I can think of is that 'x' || null returns 'x', not null as you might perhaps expect.

link|flag
I'd expect null from a logical operation... not sure I'd ever thought about a string operation. – Mark Brady Nov 10 '08 at 15:48
Well of course Oracle treats null and '' as the same, and 'x' || '' = 'x' makes sense. But if you think of null as "undefined" or "unknown" then 'x' || null could be any string beginning with 'x' and so is itself "unknown"! – Tony Andrews Nov 10 '08 at 16:02
vote up 0 vote down

There's also concat, but it doesn't get used much

select concat('a','b') from dual;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.