Here is my query:SELECT departments.department_name AS "Department name", locations.STREET_ADDRESS AS "Mailing address", locations.city, locations.state_province, locations.postal_codeFROM departments, locationsWHERE departments.location_id = locations.location_idAND locations.country_id = 'US'ORDER BY department_name;
and here is what the output is like:Department name Mailing address------------------------------ ----------------------------------------CITY STATE_PROVINCE POSTAL_CODE------------------------------ ------------------------- ------------Administration 2004 Charade RdSeattle Washington 98199IT 2014 Jabberwocky RdSouthlake Texas 26192
But I need it to look like this:Department Name Mailing Address---------------------- -----------------------------------------------------Administration 2004 Charade Rd, Seattle, Washington 98199IT 2014 Jabberwocky Rd, Southlake, Texas 26192
How can I do this?Thanks for your help.PS: it doesn't matter if the displayed data is folded because of the number of lines allowed.