How can I get contact first name and last name in the same column as shown in the picture? Here is my incomplete query:
SELECT
customernumber,
customername,
contactfirstname,
contactlastname
FROM
dbs211_customers
WHERE
country = 'Canada'
ORDER BY
customernumber;
Here is the link for img: https://i.stack.imgur.com/5e5C2.png