89. Build a Full Name
EasyString Manipulationconcatenation||
The || operator glues two strings together. To put a literal space between two columns you concatenate three pieces: the first column, a space literal ' ', and the second column.
Task: for each employee return id and a full_name column equal to first_name || ' ' || last_name. Order by id.
Output columns, in order: id, full_name.
Tables
Loading schema…
Expected outputrows must come back in this order
Computing expected output…
This is the result for the example data above. On Submit your query is graded against this example plus 4 hidden edge cases — 5test cases in all. A sloppy query that only fits the example won't pass.
SQL· SQLite · runs in your browser
⌘/Ctrl+↵ run · ⇧⌘/Ctrl+↵ submit
Run a query to see its output here.