Oracle में स्ट्रिंग्स को जोड़ने के लिए आपके पास दो विकल्प हैं:
- CONCAT
||
का उपयोग करना
CONCAT उदाहरण:
CONCAT(
CONCAT(
CONCAT(
CONCAT(
CONCAT('I like ', t.type_desc_column),
' cake with '),
t.icing_desc_column),
' and a '),
t.fruit_desc_column)
||
. का उपयोग करना उदाहरण:
'I like ' || t.type_desc_column || ' cake with ' || t.icing_desc_column || ' and a ' || t.fruit_desc_column