Here is my SQL
SELECT Sale.[Family Name], Sale.[First Name], Sale.[Home Phone], Sale.[Cell Phone], Sale.[2nd Cell Phone], Sale.[Work Phone], Sale.ID, t_Asset.r_Asset, Sale.Rooms, t_City.r_City, Sale.Neighborhood, Sale.Street, Sale.[Build Number], Sale.Apartment, Sale.Price, Sale.[Old Price], Sale.Floor, Sale.Floors, Sale.[Surface Build], Sale.[Surface Yard], Sale.North, Sale.South, Sale.East, Sale.West, Sale.Level, Sale.Basement, Sale.Roof, Sale.Apartments, Sale.Age, Sale.Block, Sale.Part, Sale.Arbitration, Sale.Eviction, Sale.Source, Sale.Agent, Sale.StockpileNo, Sale.StockPileUPD, Sale.PublishAgain, Sale.LastPublish, Sale.Remind, Sale.DateUPD, t_Addin.r_Addin, t_Aircondition.r_Aircondition, t_ExclusiveYesNo.[r_Yes-No], t_OfferYesNo.[r_Yes-No], t_Status.r_Status, t_UrgentYesNo.[r_Yes-No], t_Parking.r_Parking, t_PublishYesNo.[r_Yes-No], t_Side.r_Side, t_KeyHoldYesNo.[r_Yes-No], t_Kitchen.[r-Kitchen], t_Land.r_Land, t_Bathroom.r_Bathroom, t_Boiler.[r-Boiler], t_ElevatorYesNo.[r_Yes-No], Sale.OpenDate, Sale.Comment
FROM (t_UrgentYesNo RIGHT JOIN (t_Status RIGHT JOIN (t_Side RIGHT JOIN (t_PublishYesNo RIGHT JOIN (t_Parking RIGHT JOIN (t_OfferYesNo RIGHT JOIN (t_Land RIGHT JOIN (t_Kitchen RIGHT JOIN (t_KeyHoldYesNo RIGHT JOIN (t_ExclusiveYesNo RIGHT JOIN (t_ElevatorYesNo RIGHT JOIN (t_Boiler RIGHT JOIN (t_Bathroom RIGHT JOIN (t_Aircondition RIGHT JOIN (t_Addin RIGHT JOIN (t_City RIGHT JOIN Sale ON t_City.Index = Sale.City) ON t_Addin.Index = Sale.Addin) ON t_Aircondition.Index = Sale.Aircondition) ON t_Bathroom.Index = Sale.Bathroom) ON t_Boiler.Index = Sale.Boiler) ON t_ElevatorYesNo.Index = Sale.Elevator) ON t_ExclusiveYesNo.Index = Sale.Exclusive) ON t_KeyHoldYesNo.Index = Sale.KeyHolding) ON t_Kitchen.Index = Sale.Kitchen) ON t_Land.Index = Sale.Land) ON t_OfferYesNo.Index = Sale.Offer) ON t_Parking.Index = Sale.Parking) ON t_PublishYesNo.Index = Sale.Publish) ON t_Side.Index = Sale.Side) ON t_Status.Index = Sale.Status) ON t_UrgentYesNo.Index = Sale.Urgency) LEFT JOIN t_Asset ON Sale.Asset = t_Asset.Index;