Being a newbie I need your help again. This time I'm trying to print a report in MYSQL 6.0 that shows each branch & its location in the following format: The 'branch name' is located at 'street address' in the city of 'city name'. I also need labels. Here's what I've done & gotten as a result:
SELECT CONCAT(name, ' ', ' is located at', address, city, ' in the city of ')
FROM branch;
I got a column named address with 6 street addresses.