Concatenation Operator
- Last Updated: May 15, 2020
- 1 minute read
- DataDirect Connectors
- JDBC
- IBM Db2 5.1
- MySQL 5.1
- Progress OpenEdge 5.1
- SAP Sybase 5.1
- Documentation
The concatenation operator manipulates character strings. The following table lists the only supported concatenation operator.
| Operator | Purpose | Example |
|---|---|---|
| || | Concatenates character strings. |
SELECT 'Name is' || ename FROM emp
|
The result of concatenating two character strings is the data type VARCHAR.