Du har to muligheder for at sammenkæde strenge i Oracle:
- CONCAT
- Brug af
||
CONCAT eksempel:
CONCAT(
CONCAT(
CONCAT(
CONCAT(
CONCAT('I like ', t.type_desc_column),
' cake with '),
t.icing_desc_column),
' and a '),
t.fruit_desc_column)
Brug af ||
eksempel:
'I like ' || t.type_desc_column || ' cake with ' || t.icing_desc_column || ' and a ' || t.fruit_desc_column