Write a select statement that returns one column from the customers table named full_name that joins the last-name and first_name columns
Select last_name, first_name From customers Join
Write a select statement that returns one column from the customers table named full_name that joins the last-name and first_name columns
Select last_name, first_name From customers Join
To combine column in mysql use CONCAT function
SELECT CONCAT (column1, " ", column2) FROM TABLE
you can concat column or string like in example