I have a result set like this:
SELECT PropertyId, Owner from Table A
PropertyId Owner
1 Company A
1 Company B
I want to Pivot the result set like this:
PropertyId Owner 1 Owner 2
1 CompanyA Company B
In other words I want 2 owners for every property. Assume that every property has at the max 2 owners.