Maliyetleri eksi giderlerine göre sıralamak için iki tablo birleştirerek - deyimi ile kompleks sipariş gerekir?

0 Cevap php

Ben kolay bir çözüm olduğuna eminim ne biraz şaşırıp. İşte ikilem:

Ben iki mysql tablolarını:

one for cars (with the car_price_purchase / car_price_sold for each car_id) one is for expenses (with each expense attached to a car - expense_amount, expense_car_id )

Ne yapmam gerekir sonra çıkarma, her araç için tüm masraflarını eklemek olduğunu artı genel kar elde etmek amacıyla satın alınan fiyat için satılan fiyat.

Bu, genel olarak yapmak oldukça kolaydır ama I want to sort by the end profit amount.

Do I just store these results in an array and then do a sort on that array?? Or can I write a complex joined mysql query with a even more complex order by statement??

Any help is appreciated. thanks nicholas

0 Cevap