Sie haben zwei Möglichkeiten, Strings in Oracle zu verketten:
- CONCAT
- Mit
||
CONCAT-Beispiel:
CONCAT(
CONCAT(
CONCAT(
CONCAT(
CONCAT('I like ', t.type_desc_column),
' cake with '),
t.icing_desc_column),
' and a '),
t.fruit_desc_column)
Mit ||
Beispiel:
'I like ' || t.type_desc_column || ' cake with ' || t.icing_desc_column || ' and a ' || t.fruit_desc_column