EasyOutput prediction

String concatenation

Given this table (employees):

idfirst_namelast_name
1AliceSmith

What does this query return?

SELECT first_name || ' ' || last_name AS full_name FROM employees WHERE id = 1;

← → arrow keys to navigate

Sign in to save your progress.