Multiple choice technology databases

Concatenation operator is

  1. +

  2. -

  3. ||

  4. *

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

The double pipe (||) operator is used for string concatenation in SQL, particularly in Oracle and PostgreSQL databases. For example, 'First' || ' ' || 'Last' results in 'First Last'.