The concatenation operator joins the contents of two variables of the same type to form a longer value. You can concatenate strings and blobs.
To concatenate values, you use the plus sign (+) operator.
String expression |
Value |
---|---|
"over" + "stock" |
overstock |
Lname + ', ' + Fname |
If Lname is Hill and Fname is Craig, then "Hill, Craig" |