Peculiarly, Oracle uses the double pipe ( || ) as a concatenation operator. Most programming languages use || for the or operator. Example:
insert into mytable (id, name) values (12, 'Mr. ' || lastname);
The field lastname is concatenated to the string Mr.