I have a table of data that contains CustomerIDs and addresses. Each CustomerID can potentially have multiple addresses associated with it. What I am trying to do is create an SQL Query that would show data grouped by CustomerID in the following way
Customer1
AddressID1 Addr1 Addr2 City State Zip
AddressID2 Addr1 Addr2 City State Zip
Customer2
AddressID1 Addr1 Addr2 City State Zip
AddressID2 Addr1 Addr2 City State Zip
Ultimately what I am trying to do is build an Excel file from the data built exactly in that way and then add a column with some new data that is then imported back into the ERP system. I need it formatted in that way because the custom import application requires it. This would be very time consuming to do manually because we have a few thousand customer records.
Can a select query be written that formats the...