Multiple choice technology databases

Concatenation operator is

  1. +

  2. -

  3. ||

  4. *

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The concatenation operator in SQL is the double pipe (||). It joins two or more strings together. For example, 'Hello' || ' ' || 'World' results in 'Hello World'. The other operators are arithmetic: +, -, * for addition, subtraction, and multiplication respectively.