How can we merge first and last names into a full name?
CONCAT() joins two or more strings together into a single combined string.
Full name formatting, creating composite keys, formatting postal addresses.
SELECT
CONCAT(first_name, ' ', last_name) AS full_name
FROM employees;Practice typing production-grade SQL code for CONCAT.