I need to execute a view statement to do the following:
Table A
Loan_Number
Loan Officer
Table B
Loan_Number
Borrower_Name
Table A Values
Loan Number: 123
Loan Officer: FRANK
Table B Values
Loan Number: 123
Borrower Name: SMITH
Loan Number: 123
Borrower Name: JONES
Query Output Needed:
123 FRANK SMITH,JONES
Is it possible to concatenate contents from Table B and produce one row?
Thank you.
Table A
Loan_Number
Loan Officer
Table B
Loan_Number
Borrower_Name
Table A Values
Loan Number: 123
Loan Officer: FRANK
Table B Values
Loan Number: 123
Borrower Name: SMITH
Loan Number: 123
Borrower Name: JONES
Query Output Needed:
123 FRANK SMITH,JONES
Is it possible to concatenate contents from Table B and produce one row?
Thank you.