I want to create a query that selects the columns PlayerName , PlayerNumber, Location, PartnerName, PartnerNumber, Location from the following tables:
Players(Columns: Id, PlayerName, PlayerNumber, LocationId)Partners(Columns: Id, PartnerName, PartnerNumber, LocationId)Locations(Columns: Id, Location)
But I cannot figure out how to do that. Does anyone have any ideas?
Find the updated query after considering registration table.