plus

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
plus [2016/03/22 16:01]
dmtolpeko [Addition Operator (+) - PL/HQL]
plus [2016/03/22 16:03] (current)
dmtolpeko [Add Two Integers]
Line 18: Line 18:
 | 3 + 1 | 4 | Integer | | 3 + 1 | 4 | Integer |
  
 +===== Concatenate Two Strings =====
 +
 +When you use + for string operand the result of the operation is the concatenated string.
 +
 +**Example:​**
 +
 +| **Expression** | **Result** | **Result Type** |
 +| '​Ab'​ + '​c'​ | '​Abc'​ | String |
 ===== Add an Integer to Date ===== ===== Add an Integer to Date =====