The _ character is used for concatenation of strings
Answers
Answered by
2
Answer:
Concatenation Operator
Operator Purpose Example
|| Concatenates character strings and CLOB data. SELECT 'Name is ' || last_name FROM employees;
Answered by
2
hope it helps
mark as brainliest ___/!\__
..
The + (plus) operator is often overloaded to denote concatenation for string arguments: "Hello, " + "World" has the value "Hello, World" . In other languages there is a separate operator, particularly to specify implicit type conversion to string, as opposed to more complicated behavior for generic plus.
Similar questions