Answer:
SELECT vendor_number, vendor_name, CONCAT ('street', ' ' , 'city', ' ' , 'state', ' ' , 'zip code') as adress
FROM vendor_directory
ORDER BY vendor_name ASC;
Step-by-step explanation:
* Suppose vendor_directory is the name of the table from which you extract the data with the SELECT sentence.