EasyOutput prediction
String concatenation
Given this table (employees):
| id | first_name | last_name |
|---|---|---|
| 1 | Alice | Smith |
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.